add simple python framework

This commit is contained in:
Kun Huang 2015-10-20 15:39:06 +08:00
parent fdaa73b8f6
commit e59243e153
3 changed files with 35 additions and 0 deletions

0
scalpels/__init__.py Normal file
View File

26
setup.cfg Normal file
View File

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

9
setup.py Executable file
View File

@ -0,0 +1,9 @@
#!/usr/bin/env python
#-*- coding:utf-8 -*-
# Author: Kun Huang <academicgareth@gmail.com>
import setuptools
setuptools.setup(
setup_requires=['pbr'],
pbr=True)