Skip to content

Commit d135d18

Browse files
committed
Complete setup stuff
1 parent 6b546ae commit d135d18

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

setup.cfg

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[bdist_wheel]
2+
# This flag says that the code is written to work on both Python 2 and Python
3+
# 3. If at all possible, it is good practice to do this. If you cannot, you
4+
# will need to generate wheels for each Python version that you support.
5+
universal=1

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44
setup(name='environment_manager',
55
version='0.0.2',
66
description="A Client library for Environment Manager",
7+
url="https://github.com/trainline/python-environment_manager",
78
author="Marc Cluet",
89
author_email="[email protected]",
910
install_requires=['requests', 'simplejson'],
1011
license='Apache 2.0',
1112
classifiers=['Development Status :: 3 - Alpha',
1213
'Intended Audience :: Developers',
13-
'License :: OSI Approved :: Apache 2.0',
14+
'License :: OSI Approved :: Apache Software License',
1415
'Programming Language :: Python :: 2',
1516
'Programming Language :: Python :: 2.6',
1617
'Programming Language :: Python :: 2.7',

0 commit comments

Comments
 (0)