setup using pbr

This commit is contained in:
Sandy Walsh 2014-01-17 17:50:13 +00:00
parent 78df77249a
commit d161cb22fc
3 changed files with 31 additions and 0 deletions

View File

@ -9,3 +9,4 @@ Pympler
requests
south
sphinxcontrib-httpdomain
pbr

22
setup.cfg Normal file
View File

@ -0,0 +1,22 @@
[metadata]
name = stacktach
author = Dark Secret Software Inc., Rackspace Hosting
author-email = admin@darksecretsoftware.com
summary = OpenStack Monitoring and Billing
description-file = README.md
license = Apache-2
classifier =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: Developers
Intended Audience :: Information Technology
License :: OSI Approved :: Apache Software License
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Libraries :: Python Modules
keywords =
setup
distutils
[files]
packages =
stacktach

8
setup.py Normal file
View File

@ -0,0 +1,8 @@
#!/usr/bin/env python
from setuptools import setup
setup(
setup_requires=['pbr'],
pbr=True,
)