X Tutup
Skip to content

Commit 4ba2eb6

Browse files
author
Thomas Grainger
committed
declare Python3 support in wheel and trove
1 parent 2c7fcf9 commit 4ba2eb6

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

__pkginfo__.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@
1616
'Intended Audience :: Developers',
1717
'Operating System :: OS Independent',
1818
'Programming Language :: Python',
19+
'Programming Language :: Python :: 2',
20+
'Programming Language :: Python :: 2.6',
21+
'Programming Language :: Python :: 2.7',
22+
'Programming Language :: Python :: 3',
23+
'Programming Language :: Python :: 3.3',
24+
'Programming Language :: Python :: 3.4',
25+
'Programming Language :: Python :: 3.5',
1926
'Topic :: Software Development :: Debuggers',
2027
'Topic :: Software Development :: Libraries :: Python Modules',
2128
]

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,6 @@ doc_files = README
66
# USAGE.txt
77
# doc/
88
# examples/
9+
10+
[bdist_wheel]
11+
universal=1

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
1-
#! python
1+
#!/usr/bin/env python
22

33
"""Setup script for the 'uncompyle6' distribution."""
44

5-
from distutils.core import setup, Extension
6-
75
# Get the package information used in setup().
86
# from __pkginfo__ import \
97
# author, author_email, classifiers, \

0 commit comments

Comments
 (0)
X Tutup