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:
parent
3d346ea1d4
commit
0c78c99bc1
2
Authors
Normal file
2
Authors
Normal file
@ -0,0 +1,2 @@
|
||||
Changbin Liu <changbin.liu@gmail.com>
|
||||
Yun Mao <yunmao@gmail.com>
|
@ -1,4 +1,4 @@
|
||||
inception
|
||||
Inception
|
||||
=========
|
||||
|
||||
The repository for inception cloud
|
||||
Inception: Towards a Nested Cloud Architecture
|
||||
|
20
setup.py
Normal file
20
setup.py
Normal 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
3
tools/pep8.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
pep8 inception/
|
3
tools/pyflakes.sh
Executable file
3
tools/pyflakes.sh
Executable file
@ -0,0 +1,3 @@
|
||||
#!/usr/bin/env bash
|
||||
|
||||
pyflakes inception/
|
Loading…
x
Reference in New Issue
Block a user