-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
37 lines (34 loc) · 1.18 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
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='geoz',
version='2.0.1',
license="BSD 3-Clause",
description='A Library to convert Unsupervised Clustering Results into Geographical Maps',
py_modules=['geoz'],
package_dir={'': 'src'},
install_requires=['pandas', 'mlxtend', 'scikit-learn', 'matplotlib', 'geopandas', 'shapely'],
extras_require={
"dev": [
"pytest >= 3.9",
"check-manifest",
"twine"
]
},
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Visualization",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
],
python_requires='>=3',
long_description=long_description,
long_description_content_type="text/markdown",
author="Khalid ElHaj",
author_email="[email protected]",
url="https://github.com/Ne-oL/geoz",
)