-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (31 loc) · 1.12 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
from setuptools import setup, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='PyLandslide',
version='0.1.6',
long_description=long_description,
long_description_content_type="text/x-rst",
description='Tool for landslide susceptibility mapping and uncertainty analysis.',
url='https://github.com/WRHGroup/PyLandslide',
author='Mohammed Basheer',
author_email='mohammedadamabbaker@gmail.com',
license='GNU',
install_requires=['click','pandas','numpy','scikit-learn','geopandas','rasterio'],
packages=find_packages(),
package_data={
'PyLandslide': ['json/*.json'],
},
entry_points={
'console_scripts': ['PyLandslide=PyLandslide.cli:start_cli'],
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: Implementation :: PyPy',
'Operating System :: OS Independent',
'Natural Language :: English',
'Development Status :: 1 - Planning',
'Intended Audience :: Developers',
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
)