This repository has been archived by the owner on Aug 13, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 70
/
setup.py
51 lines (48 loc) · 1.49 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
#!/usr/bin/env python
# coding: utf-8
# http://stackoverflow.com/a/10975371/554319
import io
from setuptools import setup, find_packages
# http://blog.ionelmc.ro/2014/05/25/python-packaging/
setup(
name="PyFME",
version="0.2.dev0",
description="Python Flight Mechanics Engine",
author="AeroPython Team",
author_email="aeropython@groups.io",
url="http://pyfme.readthedocs.io/en/latest/",
download_url="https://github.com/AeroPython/PyFME/",
license="MIT",
keywords=[
"aero", "aerospace", "engineering",
"flight mechanics", "standard atmosphere", "simulation",
],
python_requires=">=3.5",
install_requires=[
"numpy",
"scipy",
"matplotlib",
"pandas"
],
tests_require=[
"pytest"
],
packages=find_packages('src'),
package_dir={'': 'src'},
classifiers=[
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
long_description=io.open('README.rst', encoding='utf-8').read(),
include_package_data=True,
zip_safe=False,
)