From ba8a690c4c3f9dc804ba0ea7fbf6d3e0e3004f89 Mon Sep 17 00:00:00 2001 From: Sandy Walsh Date: Thu, 9 Jan 2014 17:45:45 +0000 Subject: [PATCH] First commit --- setup.cfg | 27 +++++++++++++++++++++++++++ setup.py | 8 ++++++++ 2 files changed, 35 insertions(+) create mode 100644 setup.cfg create mode 100644 setup.py 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, +)