-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathsetup.py
executable file
·74 lines (72 loc) · 2.25 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
74
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.7",
install_requires=[
'affine',
'fiona>=1.8.4,<1.9.0',
'shapely>=1.6.3,<2.0.0',
'rasterio>=1.2.0',
'pillow',
'mercantile>=0.10.0',
'boltons',
'imageio',
"lxml",
'python-dateutil',
],
extras_require={
'dev': [
'coverage',
'mypy',
'types-python-dateutil',
'types-pkg_resources',
'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.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"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(),
)