-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathsetup.py
45 lines (41 loc) · 1.42 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
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# get the version
exec(open(path.join(here, "simupy_flight", "version.py")).read())
# Get the long description from the README file
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="simupy_flight",
version=__version__,
description="A framework for modeling and simulating dynamical systems.",
long_description=long_description,
packages=find_packages(),
author="Benjamin W. L. Margolis",
author_email="[email protected]",
license="NASA Open Source Agreement Version 1.3",
python_requires=">=3",
install_requires=[
"numpy>=1.11.3,<2",
"scipy>=0.18.1",
"simupy>=1.1.2",
"pyerfa",
"fluids",
],
extras_require={
"test": ["pandas", "ndsplines", "matplotlib"],
"derivation": ["sympy==1.4", "jupyterlab"],
"docs": ["sphinx", "sphinx-gallery", "sphinx-rtd-theme"],
"daveml": ["lxml", "ndsplines", "sympy==1.4"],
},
classifiers=[
"Programming Language :: Python :: 3",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering :: Mathematics",
],
)