forked from geopandas/dask-geopandas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (44 loc) · 1.5 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
import os
from setuptools import setup, find_packages
import versioneer
install_requires = [
"geopandas",
"dask>=2.18.0,!=2021.05.1",
"distributed>=2.18.0,!=2021.05.1",
"numba",
]
setup(
name="dask-geopandas",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
maintainer="Julia Signell",
maintainer_email="[email protected]",
license="BSD",
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: System :: Distributed Computing",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
],
keywords="dask geopandas spatial distributed cluster",
description="GeoPandas objects backed with Dask",
long_description=(
open("README.rst").read() if os.path.exists("README.rst") else ""
),
url="https://github.com/geopandas/dask-geopandas",
project_urls={
"Documentation": "https://github.com/geopandas/dask-geopandas",
"Source": "https://github.com/geopandas/dask-geopandas/",
"Issue Tracker": "https://github.com/geopandas/dask-geopandas/issues",
},
packages=find_packages(),
package_data={"dask_geopandas": ["*.yaml"]},
install_requires=install_requires,
tests_require=["pytest"],
zip_safe=False,
)