forked from dmbaturin/pytaf
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (21 loc) · 912 Bytes
/
setup.py
File metadata and controls
23 lines (21 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
setup(name='pytaf',
version='1.2.2-2',
description='TAF (Terminal Aerodrome Forecast) and METAR parser and decoder',
url='http://github.com/zaptm/pytaf',
author='Robert Nilsson (original Daniil Baturin)',
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"
)