First commit

This commit is contained in:
Sandy Walsh 2014-01-09 17:45:45 +00:00
parent 1237860ed9
commit ba8a690c4c
2 changed files with 35 additions and 0 deletions

27
setup.cfg Normal file
View File

@ -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

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,
)