-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsetup.py
More file actions
66 lines (64 loc) · 1.47 KB
/
setup.py
File metadata and controls
66 lines (64 loc) · 1.47 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from distutils.extension import Extension
import numpy
from Cython.Distutils import build_ext
from setuptools import find_packages
from setuptools import setup
setup(
packages=find_packages(include=['hazelbean']),
install_requires=[
"Pyro4",
"aenum",
"anytree",
"cython",
"dask",
"descartes",
"gdal",
"geopandas",
"google-api-python-client",
"google-auth",
"google-auth-oauthlib",
"google-cloud-datastore",
"google-cloud-storage",
"markdown",
"matplotlib",
"natcap.invest",
"netcdf4",
"numpy",
"openpyxl",
"pandas",
"pillow",
"pygeoprocessing",
"pytest",
"pytest-cov",
"pytest-benchmark",
"python-pptx",
"pyyaml",
"qtawesome",
"qtpy",
"requests",
"rioxarray",
"scikit-learn",
"scipy",
"seaborn",
"setuptools>=70.0.0",
"setuptools_scm",
"shapely",
"sip",
"six",
"statsmodels",
"taskgraph",
"tqdm",
"xarray",
"xlrd",
],
include_dirs=[numpy.get_include()],
cmdclass={'build_ext': build_ext},
ext_modules=[
Extension(
"hazelbean.calculation_core.cython_functions",
["hazelbean/calculation_core/cython_functions.pyx"]),
Extension(
"hazelbean.calculation_core.aspect_ratio_array_functions",
["hazelbean/calculation_core/aspect_ratio_array_functions.pyx"]),
]
)