vmware-nsx/quantum/setup.py
Brad Hall 4bf4a0cc24 Change version numbers to be compatible with debian packaging
Change-Id: I4548049e678ca04f33857b9ae21c1bc879e30cef
2011-11-05 03:22:16 -07:00

50 lines
953 B
Python

try:
from setuptools import setup, find_packages
except ImportError:
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
Name = 'quantum'
Url = "https://launchpad.net/quantum"
Version = '2012.1dev'
License = 'Apache License 2.0'
Author = 'Netstack'
AuthorEmail = 'netstack@lists.launchpad.net'
Maintainer = ''
Summary = 'Layer 2 network as a service for Openstack'
ShortDescription = Summary
Description = Summary
requires = [
'quantum-common',
'quantum-client',
'quantum-server'
]
EagerResources = [
'quantum',
]
ProjectScripts = [
]
PackageData = {
}
setup(
name=Name,
version=Version,
url=Url,
author=Author,
author_email=AuthorEmail,
description=ShortDescription,
long_description=Description,
license=License,
scripts=ProjectScripts,
install_requires=requires,
include_package_data=True,
package_data=PackageData,
)