-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (47 loc) · 1.53 KB
/
setup.py
File metadata and controls
50 lines (47 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
from pathlib import Path
from setuptools import setup, find_packages
ROOT = Path(__file__).parent
README = (ROOT / "README.md").read_text(encoding="utf-8")
version_ns = {}
exec((ROOT / "src/pk_spectroscopy/_version.py").read_text(), version_ns)
setup(
name="pk_spectroscopy",
version=version_ns["__version__"],
description="Advanced analysis of objects with complex acid composition",
long_description=README,
long_description_content_type="text/markdown",
author="Mikhail Markovskii",
author_email="m.markovsky@gmail.com",
url="https://github.com/Sciencealone/pk_spectroscopy",
license="MIT",
python_requires=">=3.9",
packages=find_packages(where="src"),
package_dir={"": "src"},
install_requires=[
"numpy==2.4.3",
"scipy==1.17.1",
"pandas==2.3.3",
"streamlit==1.55.0",
"plotly==6.6.0",
"plotly-express==0.4.1",
],
extras_require={
"dev": ["pytest", "black", "ruff", "mypy", "coverage"],
},
entry_points={
"console_scripts": [
"pk_spectroscopy = pk_spectroscopy.app.cli:main",
],
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Chemistry",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: Linux",
],
include_package_data=True,
zip_safe=False,
)