Skip to content

Commit 2386c5a

Browse files
committed
Added setup.cfg for wheel distribution
1 parent 081473f commit 2386c5a

File tree

2 files changed

+14
-13
lines changed

2 files changed

+14
-13
lines changed

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[bdist_wheel]
2+
universal = 1

setup.py

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,6 @@
2727
limitations under the License.
2828
"""
2929

30-
# Module version
31-
__version_info__ = (0, 1, 1)
32-
__version__ = ".".join(str(x) for x in __version_info__)
33-
34-
# Documentation strings format
35-
__docformat__ = "restructuredtext en"
36-
37-
# ------------------------------------------------------------------------------
38-
3930
import os
4031

4132
try:
@@ -45,6 +36,16 @@
4536

4637
# ------------------------------------------------------------------------------
4738

39+
# Module version
40+
__version_info__ = (0, 1, 2)
41+
__version__ = ".".join(str(x) for x in __version_info__)
42+
43+
# Documentation strings format
44+
__docformat__ = "restructuredtext en"
45+
46+
# ------------------------------------------------------------------------------
47+
48+
4849
def read(fname):
4950
"""
5051
Utility method to read the content of a whole file
@@ -73,10 +74,8 @@ def read(fname):
7374
"License :: OSI Approved :: Apache Software License",
7475
'Operating System :: OS Independent',
7576
'Programming Language :: Python :: 2.7',
76-
'Programming Language :: Python :: 3',
77-
'Programming Language :: Python :: 3.0',
78-
'Programming Language :: Python :: 3.1',
79-
'Programming Language :: Python :: 3.2',
8077
'Programming Language :: Python :: 3.3',
78+
'Programming Language :: Python :: 3.4',
79+
'Programming Language :: Python :: 3.5',
8180
"Topic :: Software Development :: Libraries :: Python Modules",
8281
])

0 commit comments

Comments
 (0)