Merging lp:~asomya/quantum/lp824145
Fix for Bug#824145 : Adding a setup script for quantum
This commit is contained in:
commit
f3627a2fd7
34
setup.py
Normal file
34
setup.py
Normal file
@ -0,0 +1,34 @@
|
||||
import os
|
||||
import sys
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
def read(fname):
|
||||
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
||||
|
||||
requirements = ['httplib2','eventlet','routes','webob']
|
||||
|
||||
setup(
|
||||
name = "Quantum",
|
||||
version = "0.1",
|
||||
description = "Layer 2 network as a service for Openstack",
|
||||
long_description = read('README'),
|
||||
url = 'http://launchpad.net/quantum',
|
||||
license = 'Apache',
|
||||
author = 'Netstack',
|
||||
author_email = 'netstack@launchpad.net',
|
||||
packages = find_packages(exclude=['tests']),
|
||||
classifiers = [
|
||||
'Development Status :: 4 - Beta',
|
||||
'Environment :: Console',
|
||||
'Intended Audience :: Developers',
|
||||
'Intended Audience :: Information Technology',
|
||||
'License :: OSI Approved :: BSD License',
|
||||
'Operating System :: OS Independent',
|
||||
'Programming Language :: Python',
|
||||
],
|
||||
namespace_packages = ["quantum"],
|
||||
install_requires = requirements,
|
||||
|
||||
tests_require = ["nose"],
|
||||
test_suite = "nose.collector",
|
||||
)
|
Loading…
x
Reference in New Issue
Block a user