-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
23 lines (23 loc) · 854 Bytes
/
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
from setuptools import setup, find_packages
from os import path
this_directory = path.abspath(path.dirname(__file__))
filepath = path.join(this_directory, 'README.md')
VERSION = '0.1.9'
setup(
name='gispandas', # package name
version=VERSION, # package version
author="HMX",
author_email="[email protected]",
description='gispandas', # package description
packages=find_packages(),
url="https://github.com/mxhou/gispandas/",
zip_safe=False,
# What packages are required for this module to be executed?
REQUIRED = ['geopandas', 'numpy','json','rasterio','rasterstats','gdal'],
license='MIT',
python_requires=">=3.6",
keywords=['gis','geo','tif','json','shp'],
data_files=[filepath],
long_description=open(filepath, encoding='utf-8').read(),
long_description_content_type='text/markdown'
)