-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.cfg
58 lines (54 loc) · 1.29 KB
/
setup.cfg
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
[metadata]
name = passpredict
version= attr: passpredict._version.version
keywords = iss predict orbit sgp4 satellite
author = Sam Friedman
#author_email = None
description = Predict upcoming satellite overpasses
long_description = file: README.md
long_description_content_type = text/markdown
url = https://www.github.com/samtx/passpredict
license = MIT
license_files: LICENSE
classifiers =
License :: OSI Approved :: Python Software Foundation License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
package_dir =
= src
packages =
passpredict
passpredict.observers
passpredict.satellites
python_requires = >=3.8
install_requires =
sgp4>=2.12
numpy>=1.22
scipy
orbit-predictor
click
rich
httpx
timezonefinder
backports.zoneinfo; python_version < "3.9"
tzdata; platform_system == "Windows"
zip_safe = False
[options.package_data]
* = *.txt, *.rst, *.dat, *.csv, *.md
[options.extras_require]
dev =
Cython>=0.29.24
pytest>=6.2.5
pytest-html
pytest-cov
flake8
docs =
mkdocs-material
mkdocstrings
pytkdocs[numpy-style]
[options.entry_points]
console_scripts =
passpredict = passpredict.cli:main