-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
72 lines (68 loc) · 1.9 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
62
63
64
65
66
67
68
69
70
71
72
from setuptools import setup, find_packages
def readme():
with open("README.md") as f:
long_desc = f.read()
# strip out the raw html images?
return long_desc
setup(
name="xyzpy",
description="Easily generate large parameter space data",
long_description=readme(),
url="http://xyzpy.readthedocs.io",
project_urls={ # Optional
"Bug Reports": "https://github.com/jcmgray/xyzpy/issues",
"Source": "https://github.com/jcmgray/xyzpy/",
},
author="Johnnie Gray",
author_email="[email protected]",
license="MIT",
packages=find_packages(exclude=["docs", "test*"]),
entry_points={
"console_scripts": ["xyzpy-grow = xyzpy.gen.xyzpy_grow_cli:main"]
},
install_requires=[
"numpy>=1.10.0",
"dask>=0.11.1",
"xarray>=0.9.0",
"pandas>=0.20",
"h5py>=2.6.0",
"h5netcdf>=0.2.2",
"joblib>=0.12",
"tqdm>=4.7.6",
],
extras_require={
"tests": [
"coverage",
"pytest",
"pytest-cov",
],
"plotting": [
"matplotlib",
"bokeh",
],
"docs": [
"matplotlib",
"bokeh",
"furo",
"ipython!=8.7.0",
"myst-nb",
"setuptools_scm",
"sphinx-autoapi",
"astroid<3.0.0",
"sphinx-copybutton",
"sphinx-design",
"sphinx>=2.0",
],
},
python_requires=">=3.8",
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
],
)