-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
65 lines (61 loc) · 1.98 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
from os import path
from setuptools import setup
DISTNAME = "awherepy"
DESCRIPTION = (
"Python package built to work with weather and agriculture "
"data in the aWhere API."
)
MAINTAINER = "Cale Kochenour"
MAINTAINER_EMAIL = "[email protected]"
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
if __name__ == "__main__":
setup(
name=DISTNAME,
maintainer=MAINTAINER,
maintainer_email=MAINTAINER_EMAIL,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
version="0.1.0",
packages=["awherepy"],
install_requires=[
"matplotlib",
"numpy",
"seaborn",
"geopandas",
"earthpy",
"shapely",
"rasterstats",
"descartes",
"rtree",
],
zip_safe=False,
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Topic :: Software Development",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
],
package_data={
DISTNAME: [
"tests/test-data/*.cpg",
"tests/test-data/*.dbf",
"tests/test-data/*.prj",
"tests/test-data/*.shp",
"tests/test-data/*.shx",
"tests/test-data/*.xml",
"tests/test-data/*.tfw",
"tests/test-data/*.tif",
"tests/test-data/*.tif.aux.xml",
"tests/test-data/*.tif.ovr",
"tests/test-data/*.tif.xml",
]
},
url="https://github.com/calekochenour/awherepy",
)