-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (41 loc) · 1.08 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
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="rectifiedgrid", # or RectifiedGrid
version="2.0.3",
author="Stefano Menegon",
author_email="[email protected]",
description="RectifiedGrid is a python module to deal with rectified grid.",
license="GPL3",
keywords="",
url="http://todo.todo",
packages=['rectifiedgrid'],
# long_description=read('README'),
install_requires=[
# data structures and analyses
'numpy',
'geopandas',
'scipy',
'Cartopy<0.20',
# I/O
'rasterio',
'fiona',
'rioxarray',
# vector data utils
'shapely', # no-binary
'rtree',
'pandas',
# utils
'affine', 'matplotlib',
'mapclassify',
'gisdata',
'pyepsg',
],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
)