wsme/setup.py
Louis Taylor 34f325a166 Clean up setup.py and add requirements.txt
Previously setup.py had information about which versions of libraries to depend
on based on the python version. Since we don't need to support those versions
anymore (2.5, 2.6 and 3.3), these dependancies can be listed in a
requirements.txt file.  This can be set up to sync with global-requirements at
a later date.

ipaddr is added to requirements-py2.txt, since it is only needed on python
version lower than 3.3.

Change-Id: I90c4cbd7961ffdf6769578986c272bf9f5721d77
2015-04-21 23:42:59 +01:00

7 lines
80 B
Python

import setuptools
setuptools.setup(
setup_requires=['pbr'],
pbr=True
)