diff --git a/scalpels/__init__.py b/scalpels/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..eea676f --- /dev/null +++ b/setup.cfg @@ -0,0 +1,26 @@ +[metadata] +name = scalpels +summary = OpenStack digging system +description-file = README.md +author = Kun Huang +author-email = academicgareth@gmail.com +maintainer = Kun Huang +maintainer-email = academicgareth@gmail.com +home-page = https://github.com/pyKun/scalpels +license = apache v2.0 +classifier = + Topic :: Utilities + Intended Audience :: Developers + Intended Audience :: Information Technology + Intended Audience :: System Administrators + Environment :: Console + License :: OSI Approved :: Apache Software License + Operating System :: POSIX :: Linux + Programming Language :: Python + Programming Language :: Python :: 2 + Programming Language :: Python :: 2.7 + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.4 + +[files] +packages = scalpels diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..19a5598 --- /dev/null +++ b/setup.py @@ -0,0 +1,9 @@ +#!/usr/bin/env python +#-*- coding:utf-8 -*- +# Author: Kun Huang + +import setuptools + +setuptools.setup( + setup_requires=['pbr'], + pbr=True)