-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
executable file
·75 lines (72 loc) · 2.4 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
75
#!/usr/bin/env python3
from setuptools import setup, find_packages
with open("README.md") as fp:
long_description = fp.read()
setup(
name='TLE-tools',
version='0.2.4',
description='Library to work with two-line element set files',
license='MIT',
author='Federico Stra',
author_email='[email protected]',
url='https://federicostra.github.io/tletools',
project_urls={
'Documentation': 'https://tletools.readthedocs.io',
'Code': 'https://github.com/FedericoStra/tletools',
'Issue tracker': 'https://github.com/FedericoStra/tletools/issues',
},
packages=find_packages(include='tletools.*'),
python_requires='>=3.4',
install_requires=[
'attrs>=19.0.0',
'numpy>=1.16.0',
'pandas>=0.24.0',
'astropy>=3.2.0',
'poliastro>=0.14.0',
],
tests_require=[
'flake8>=3.7.0',
'pytest>=5.0.0',
],
extras_require={
'dev': [
'pytest',
'coverage',
'tox',
'sphinx',
'pallets-sphinx-themes',
'sphinxcontrib-log-cabinet',
'sphinx-issues',
],
'docs': [
'sphinx',
'sphinx-rtd-theme',
],
},
long_description=long_description,
long_description_content_type='text/markdown',
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 3 - Alpha',
'Framework :: IPython',
'Framework :: Jupyter',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: Unix',
'Operating System :: POSIX',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Visualization',
],
)