-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (44 loc) · 1.4 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="bigdatavoyant",
version="2.0.0",
author="Pantelis Mitropoulos",
author_email="[email protected]",
description="Geodata profiling tool",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/OpertusMundi/BigDataVoyant.git",
packages=setuptools.find_packages(),
install_requires=[
'gdal>=3.0.2,<3.2.0',
'dicttoxml>=1.7.4,<1.8.0',
'pandas>=1.0.3,<1.6',
'geopandas>=0.7.0,<0.13.0',
'shapely>=1.7.0,<1.9',
'hdbscan>=0.8.28,<0.8.29',
'numpy>=1.21,<1.24',
'joblib>=1.0.0,<1.2.0',
'scikit-learn>=0.23.1,<0.24.2',
'matplotlib>=3.2.1,<3.6.2',
'geovaex>=0.3.0',
'folium>=0.11.0,<0.14',
'mapclassify>=2.2.0,<2.5.0',
'pygeos>=0.8.0,<1.0.0',
'vaex>=3.0.0,<3.0.1',
'contextily>=1.0.0,<1.2.1',
'netCDF4>=1.5.3,<1.5.4',
'scipy>=1.5.0,<1.9.2',
'geojsoncontour>=0.4.0,<0.5.0',
'descartes>=1.1.0,<1.1.1',
'simplejson>=3.17.5,<3.17.6',
'phonenumbers>=8.12.41,<8.13'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7',
)