forked from dmbaturin/pytaf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (22 loc) · 930 Bytes
/
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
from setuptools import setup
setup(name='pytaf',
version='1.2.0',
description='TAF (Terminal Aerodrome Forecast) and METAR parser and decoder',
url='http://github.com/dmbaturin/pytaf',
author='Daniil Baturin',
author_email='daniil@baturin.org',
license='MIT',
package_dir={'': 'lib'},
packages=['pytaf'],
zip_safe=True,
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering"
],
keywords="aviation weather meteorology taf metar"
)