-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
executable file
·30 lines (27 loc) · 1.02 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
#!/usr/bin/env python
from setuptools import setup, Extension
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="pypredict",
version="1.7.2",
author="Jesse Trutna",
author_email="[email protected]",
maintainer="Spire Global Inc",
maintainer_email="[email protected]",
description="Interface to the Predict satellite tracking and orbital prediction library",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nsat/pypredict",
py_modules=["predict"],
ext_modules=[Extension("cpredict", ["predict.c"])],
classifiers=[
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 2.7",
"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",
],
)