forked from BLSQ/geohealthaccess
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (46 loc) · 1.29 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
from setuptools import setup, find_packages
setup(
name="geohealthaccess",
version="0.1",
description="Mapping accessibility to health services",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: GIS",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
],
keywords="health mapping gis",
url="https://github.com/BLSQ/geohealthaccess",
author="Yann Forget, Grégoire Lurton",
author_email="yannforget@mailbox.org",
license="MIT",
packages=find_packages(include=["geohealthaccess", "geohealthaccess.*"]),
install_requires=[
"requests",
"requests_file",
"gdal",
"numpy",
"shapely",
"pandas",
"geopandas",
"beautifulsoup4",
"tqdm",
"rasterio",
"appdirs",
"click",
],
extras_require={"dev": ["pytest", "pytest-cov"]},
package_data={
"geohealthaccess": [
"resources/*.geojson",
"resources/*.json",
"resources/*.ini",
]
},
entry_points="""
[console_scripts]
geohealthaccess=geohealthaccess.cli:cli
""",
)