forked from satellogic/orbit-predictor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·59 lines (54 loc) · 1.63 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
#!/usr/bin/env python3
import os.path
from setuptools import setup, find_packages
# Copyright 2017 Satellogic SA.
# https://packaging.python.org/guides/single-sourcing-package-version/
version = {}
with open(os.path.join("orbit_predictor", "version.py")) as fp:
exec(fp.read(), version)
setup(
name='orbit-predictor',
version=version["__version__"],
author='Satellogic SA',
author_email='[email protected]',
description='Python library to propagate satellite orbits.',
long_description=open('README.rst').read(),
packages=find_packages(exclude=["tests"]),
license="MIT",
url='https://github.com/satellogic/orbit-predictor',
# Keywords to get found easily on PyPI results,etc.
keywords="orbit, sgp4, TLE, space, satellites",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Utilities',
'Programming Language :: Python :: 3',
],
install_requires=[
'numpy>=1.8.2',
'sgp4',
'requests',
],
extras_require={
"fast": [
"numba>=0.38",
"scipy>=0.16",
],
"dev": [
"hypothesis",
"flake8",
"hypothesis[datetime]",
"mock",
"logassert",
"pytest",
"pytest-cov",
"pytest-benchmark",
"pytz",
],
},
python_requires=">=3.4",
)