forked from dgbowl/dgpost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
61 lines (57 loc) · 1.75 KB
/
setup.py
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
51
52
53
54
55
56
57
58
59
60
61
import setuptools
import versioneer
version = versioneer.get_version()
cmdclass = versioneer.get_cmdclass()
with open("README.md", "r", encoding="utf-8") as infile:
readme = infile.read()
packagedir = "src"
setuptools.setup(
name="dgpost",
version=version,
cmdclass=cmdclass,
author="Peter Kraus",
author_email="peter@tondon.de",
description="datagram post-processing toolkit",
long_description=readme,
long_description_content_type="text/markdown",
url="https://github.com/dgbowl/dgpost",
project_urls={
"Bug Tracker": "https://github.com/dgbowl/dgpost/issues",
"Documentation": "https://dgbowl.github.io/dgpost/",
},
classifiers=[
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
],
package_dir={"": packagedir},
packages=setuptools.find_packages(where=packagedir),
python_requires=">=3.9",
install_requires=[
"numpy",
"uncertainties",
"pandas<2.1.0",
"openpyxl",
"pint>=0.22",
"chemicals>=1.0.0",
"rdkit>=2022.3",
"h5netcdf~=1.0",
"xarray ~= 2024.02",
"xarray-datatree>=0.0.12",
"dgbowl-schemas>=116",
"matplotlib>=3.5.0",
"requests",
],
extras_require={
"testing": ["pytest", "Pillow"],
"docs": [
"sphinx~=7.2",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints",
"autodoc-pydantic>=2.0.0",
],
},
entry_points={"console_scripts": ["dgpost=dgpost:run_with_arguments"]},
)