forked from CNR-ISMAR/rectifiedgrid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
43 lines (36 loc) · 998 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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 = "1.0.0-beta.4",
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',
# I/O
'rasterio',
'fiona',
# vector data utils
'shapely',
'rtree==0.8.3',
# utils
'affine',
'matplotlib'
],
classifiers=[
"Development Status :: 4 - Beta",
"Topic :: Utilities",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
]
)