-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
59 lines (52 loc) · 1.66 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
from setuptools import setup
import os
version = '2.5.5.dev0'
long_description = "\n\n".join([open("README.rst").read(), open("CHANGES.rst").read()])
install_requires = (
[
"dask[delayed]>=2.9",
"pandas>=1.0,<2.2",
"geopandas>=0.8",
"pytz",
"numpy>=1.18,<2",
"scipy>=1.4",
"fiona"
],
)
# emulate "--no-deps" on the readthedocs build (there is no way to specify this
# behaviour in the .readthedocs.yml)
if os.environ.get('READTHEDOCS') == 'True':
install_requires = []
tests_require = ["pytest"]
setup(
name="dask-geomodeling",
version=version,
description="On-the-fly operations on geographical maps.",
long_description=long_description,
# Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Scientific/Engineering :: GIS",
],
keywords=["dask"],
author="Casper van der Wel",
author_email="[email protected]",
url="https://github.com/nens/dask-geomodeling",
license="BSD 3-Clause License",
packages=[
"dask_geomodeling",
"dask_geomodeling.core",
"dask_geomodeling.geometry",
"dask_geomodeling.raster",
],
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=tests_require,
python_requires='>=3.8',
extras_require={"test": tests_require, "cityhash": ["cityhash"]},
entry_points={"console_scripts": []},
)