forked from khorton/AeroCalc_Package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (44 loc) · 1.57 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
#!/usr/bin/python
# -*- coding: utf-8 -*-
# #############################################################################
#
# Distribution Notes
#
# HTML docs are created with epydoc, via
# "cd /Users/kwh/sw_projects/hg/python/AeroCalc_Package"
# "epydoc --no-private -n AeroCalc -u 'http://www.kilohotel.com/python/aerocalc/' aerocalc"
#
# Generate distribution - "python setup.py sdist"
#
# #############################################################################
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='aero-calc',
version='0.13.2',
description='Aeronautical Engineering Calculations',
install_requires=['setuptools', 'ast', 'clipboard', 'numpy'],
long_description='''
AeroCalc is a pure python package that performs various aeronautical
engineering calculations. Currently it provides airspeed conversions,
standard atmosphere calculations, static source error correction calculations
and unit conversions.''',
author='Kevin Horton',
author_email='kevin01@kilohotel.com',
maintainer='Liam Deacon',
maintainer_email='liam.m.deacon@gmail.com',
url='http://www.kilohotel.com/python/aerocalc',
packages=['aerocalc'],
license='BSD',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: Atmospheric Science',
]
)