-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (29 loc) · 1003 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
import sys
from setuptools import setup, find_packages
open_kwds = {}
if sys.version_info > (3,):
open_kwds['encoding'] = 'utf-8'
# with open('README.md', **open_kwds) as f:
# readme = f.read()
# long_description=readme,
setup(name='dataextractors',
version='0.1.1',
description='Extract pixels and metadata using shapefiles and georeferenced imagery.',
classifiers=[],
keywords='',
author='Nikki Aldeborgh',
author_email='[email protected]',
url='https://github.com/platformstories/dataextractors',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['geoio >= 1.1.1',
'geojson >= 1.3.2',
'geojsontools >= 0.0.2',
'numpy >= 1.12.0',
'scipy',
'Pillow == 2.6.0',
'bumpversion'
]
)