diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..bf09977 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,27 @@ +[metadata] +name = shoebox +author = Dark Secret Software Inc. +author-email = admin@darksecretsoftware.com +summary = data archiving library +description-file = README +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 = + shoebox +data_files = + etc/shoebox = etc/* + etc/init = + shoebox.packaging.conf + shoebox.version.conf diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..aa2d8a0 --- /dev/null +++ b/setup.py @@ -0,0 +1,8 @@ +#!/usr/bin/env python + +from setuptools import setup + +setup( + setup_requires=['pbr'], + pbr=True, +)