-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathsetup.py
63 lines (61 loc) · 1.78 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
from setuptools import find_packages, setup
# read the contents of your README file for distribution on PyPI
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='easymore',
version='2.0.1',
license='GPLv3',
author=('Shervan Gharari'),
author_email='sh.gharari@gmail.com',
url='https://github.com/ShervanGharari/EASYMORE',
description=(
'geo-spatial processing of the input data for environmental and hydrological modeling'
),
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(where='src'),
package_dir={'': 'src'},
keywords=[
'remapping',
'NetCDF',
'shapefile',
'geo-spatial processing',
'environmental modeling'
],
install_requires=[
'numpy',
'xarray',
'pandas',
'netCDF4',
'datetime',
'cftime',
'geopandas',
'shapely',
'geovoronoi',
'json5',
'matplotlib',
'rtree',
'click'
],
entry_points={
'console_scripts': [
'easymore = easymore.scripts.main:main',
],
},
include_package_data=True,
platforms='any',
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)