Skip to content

Commit 35da4a2

Browse files
committedJan 20, 2016
Change the topic classifier. I honestly didn't know pypi disallows custom topics.
Remove doc/* from the manifest for now.
1 parent f068ab3 commit 35da4a2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎MANIFEST.in

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
include COPYING
22
include NEWS
33
include examples/*
4-
include doc/*

‎setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
setup(name='pytaf',
5-
version='1.1.0',
5+
version='1.1.1',
66
description='TAF (Terminal Aerodrome Forecast) parser and decoder',
77
url='http://github.com/dmbaturin/pytaf',
88
author='Daniil Baturin',
@@ -11,14 +11,15 @@
1111
package_dir={'': 'lib'},
1212
packages=['pytaf'],
1313
zip_safe=True,
14+
download_url = "https://github.com/dmbaturin/pytaf/archive/pypi/1.1.1.zip",
1415
classifiers = [
1516
"Development Status :: 5 - Production/Stable",
1617
"License :: OSI Approved :: MIT License",
1718
"Operating System :: OS Independent",
1819
"Programming Language :: Python :: 2.6",
1920
"Programming Language :: Python :: 2.7",
2021
"Programming Language :: Python :: 3",
21-
"Topic :: Aviation"
22+
"Topic :: Scientific/Engineering"
2223
],
2324
keywords="aviation weather meteorology taf"
2425
)

0 commit comments

Comments
 (0)
Please sign in to comment.