-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (34 loc) · 1.14 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
from setuptools import setup, find_packages
__version__ = (2, 4, 0)
setup(
name="dve",
description="A climate model hybrid reconstruction tool using station data",
version=".".join(str(x) for x in __version__),
keywords="geography fields regression climate meteorology",
packages=find_packages(),
url="http://www.pacificclimate.org/",
author="Nic Annau",
author_email="[email protected]",
zip_safe=True,
# TODO: These are not scripts! Why is this here?
scripts=[
"dve/layout.py",
"dve/generate_iso_lines.py",
"dve/polygons.py",
"dve/processing.py",
"dve/colorbar.py",
],
install_requires=["dash", "shapely", "geopandas", "xarray"],
package_dir={"dve": "dve"},
package_data={"climpyrical": ["tests/data/*", "climpyrical/"]},
classifiers="""
Intended Audience :: Science/Research
License :: GNU General Public License v3 (GPLv3)
Operating System :: OS Independent
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries :: Python Modules""".split(
"\n"
),
)