-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (43 loc) · 1.6 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
from setuptools import setup
import io
# some influences here came from https://github.com/audreyr/cookiecutter/blob/master/setup.py
version = '0.2.3'
with io.open('README.rst', 'r', encoding='utf-8') as readme_file:
readme = readme_file.read()
setup(
name = 'moody',
version = version,
packages = ['moody'],
license = 'MIT',
description = 'A basic CLI to download data from the Mars ODE PDS Node',
long_description = readme,
# Author details
author='Andrew Annex',
author_email='[email protected]',
url='https://github.com/andrewannex/moody',
download_url=f'https://github.com/AndrewAnnex/moody/archive/{version}.tar.gz',
install_requires=['requests', 'fire', 'tqdm'],
entry_points={
'console_scripts': [
'moody = moody.moody:main'
]
},
keywords=['mars', 'nasa', 'ode', 'pds', 'cli', 'tool'],
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',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Scientific/Engineering :: GIS'
]
)