-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
50 lines (40 loc) · 1.52 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
from setuptools import setup
import io
# some influences here came from https://github.com/audreyr/cookiecutter/blob/master/setup.py
version = '0.0.1'
with io.open('README.rst', 'r', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name = 'circ',
version = version,
packages = ['circ'],
license = 'MIT',
description = 'A basic CLI to make mosaic vrts using ctx imagery',
long_description = readme,
# Author details
author='Andrew Annex',
author_email='[email protected]',
url='https://github.com/andrewannex/circ',
download_url='https://github.com/AndrewAnnex/circ/archive/0.0.1.tar.gz',
install_requires=['requests', 'fire', 'moody', 'geopandas', 'shapely', 'deco', 'sh', 'tqdm'],
entry_points={
'console_scripts': [
'circ = circ.circ:main'
]
},
include_package_data=True,
package_data = {'': ['circ/data/mars_mro_ctx_edr_m_c0a/*.*'] },
keywords=['mars', 'nasa', 'ode', 'pds', 'cli', 'tool', 'ctx', 'circ', 'mosaic', 'gdal'],
classifiers=[
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: GIS'
]
)