-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
31 lines (29 loc) · 1.07 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
from setuptools import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="supernova-cffi",
version="1.0.1",
author="Mingde Yin",
description="Orbit propagation and analysis tool.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/spacesys-finch/supernova/",
license="LGPLv3",
packages=["supernova"],
setup_requires=["cffi>=1.15.0"],
cffi_modules=["supernova/_builder.py:ffibuilder"],
install_requires=["cffi>=1.15.0", "numpy", "matplotlib"],
extras_require={"test": ["pytest", "poliastro"]},
options={"build_ext": {"inplace": True}},
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: C",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
],
python_requires=">=3.8,<3.11",
)