forked from satellogic/telluric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·73 lines (71 loc) · 2.2 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
64
65
66
67
68
69
70
71
72
73
from setuptools import setup, find_packages
import versioneer
setup(
name='telluric',
version=versioneer.get_version(),
description='Interactive geospatial data manipulation in Python',
license="MIT",
long_description=open('README.md', encoding='utf-8').read(),
author='Juan Luis Cano, Guy Doulberg, Slava Kerner, Lucio Torre, Ariel Zerahia, Denis Rykov',
maintainer_email='[email protected]',
url='https://github.com/satellogic/telluric/',
download_url=(
'https://github.com/satellogic/telluric/tags/v' +
versioneer.get_version()
),
packages=find_packages(),
include_package_data=True,
python_requires=">=3.5",
install_requires=[
'affine',
'dsnparse',
'fiona>=1.8.4,<2.*',
'pyproj<3; python_version>="3.5"',
'shapely>=1.6.3,<2.*',
'rasterio>=1.0.21,<2.*',
'pillow',
'mercantile>=0.10.0',
'boltons',
'imageio',
"lxml",
'python-dateutil',
],
extras_require={
'dev': [
'coverage',
'mypy',
'packaging',
'pycodestyle',
'pytest>=4',
'pytest-cov<=2.8.1',
'sphinx',
'ipython',
'nbsphinx',
'sphinx_rtd_theme'
],
'vis': [
'ipyleaflet!=0.8.2',
'matplotlib',
'folium>=0.6.0',
'tornado',
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Scientific/Engineering :: Visualization",
],
zip_safe=False,
long_description_content_type='text/markdown',
cmdclass=versioneer.get_cmdclass(),
)