add meta project Info

* tox.ini and tools (requires, pep8, pyflaks)

* Authors

* modify a bit of README

* add setup.py
This commit is contained in:
Changbin Liu 2013-05-15 15:11:11 -04:00
parent 3d346ea1d4
commit 0c78c99bc1
6 changed files with 38 additions and 2 deletions

2
Authors Normal file
View File

@ -0,0 +1,2 @@
Changbin Liu <changbin.liu@gmail.com>
Yun Mao <yunmao@gmail.com>

View File

@ -1,4 +1,4 @@
inception
Inception
=========
The repository for inception cloud
Inception: Towards a Nested Cloud Architecture

20
setup.py Normal file
View File

@ -0,0 +1,20 @@
#!/usr/bin/python
# Copyright (c) 2012 AT&T. All right reserved.
#
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
version = '0.0.1'
setup(
name='inception',
version=version,
description="Inception: Towards a Nested Cloud Architecture",
license="Apache 2.0",
classifiers=["Programming Language :: Python"],
url='https://github.com/maoy/inception',
packages=["inception"],
)

3
tools/pep8.sh Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
pep8 inception/

3
tools/pyflakes.sh Executable file
View File

@ -0,0 +1,3 @@
#!/usr/bin/env bash
pyflakes inception/

8
tox.ini Normal file
View File

@ -0,0 +1,8 @@
[tox]
envlist = pep8, pyflakes
[testenv:pep8]
commands = bash tools/pep8.sh
[testenv:pyflakes]
commands = bash tools/pyflakes.sh