forked from openstack/neutron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (30 loc) · 1008 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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",
)