This repository was archived by the owner on Dec 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (41 loc) · 1.32 KB
/
setup.py
File metadata and controls
42 lines (41 loc) · 1.32 KB
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
import setuptools
setuptools.setup(
name="rasterfoundry",
use_scm_version=True,
description='A Python client for Raster Foundry, a web platform for '
'combining, analyzing, and publishing raster data.',
long_description=open('README.rst').read(),
url='https://github.com/raster-foundry/raster-foundry-python-client',
author='Raster Foundry',
author_email='info@rasterfoundry.com',
license='Apache License 2.0',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords='raster earth-observation geospatial geospatial-processing',
packages=setuptools.find_packages(exclude=['tests']),
package_data={'': ['*.yml']},
install_requires=[
'cryptography >= 2.0.0',
'pyasn1 >= 0.2.3',
'requests >= 2.9.1',
'bravado >= 8.4.0',
'boto3 >= 1.4.4',
'future >= 0.16.0',
'shapely >= 1.6.4post1'
],
extras_require={
'notebook': [
'notebook >= 4.0.0',
'az-ipyleaflet==0.4.1'
],
'dev': [],
'test': [],
},
setup_requires=['setuptools_scm==3.*'],
tests_require=[],
)