diff --git a/etc/pip-requires.txt b/etc/pip-requires.txt index c40dd61..f14c1f6 100644 --- a/etc/pip-requires.txt +++ b/etc/pip-requires.txt @@ -9,3 +9,4 @@ Pympler requests south sphinxcontrib-httpdomain +pbr \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..01a1ff0 --- /dev/null +++ b/setup.cfg @@ -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 \ No newline at end of file diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e7f83a9 --- /dev/null +++ b/setup.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +from setuptools import setup + +setup( + setup_requires=['pbr'], + pbr=True, +) \ No newline at end of file