8f37bfaee3
Fixes bug 917630. Change-Id: I3cf66acf46bcfc83755b572756896032cb6a11d1
52 lines
1.0 KiB
Python
52 lines
1.0 KiB
Python
try:
|
|
from setuptools import setup, find_packages
|
|
except ImportError:
|
|
from ez_setup import use_setuptools
|
|
use_setuptools()
|
|
from setuptools import setup, find_packages
|
|
|
|
from quantum import version
|
|
import sys
|
|
|
|
Name = 'quantum-sample-plugin'
|
|
Summary = 'Sample plugin for Quantum'
|
|
Url = "https://launchpad.net/quantum"
|
|
Version = version.version_string()
|
|
License = 'Apache License 2.0'
|
|
Author = 'Netstack'
|
|
AuthorEmail = 'netstack@lists.launchpad.net'
|
|
Maintainer = ''
|
|
ShortDescription = Summary
|
|
Description = Summary
|
|
|
|
requires = [
|
|
'quantum-common',
|
|
'quantum-server',
|
|
]
|
|
|
|
EagerResources = [
|
|
'quantum',
|
|
]
|
|
|
|
ProjectScripts = [
|
|
]
|
|
|
|
PackageData = {
|
|
}
|
|
|
|
setup(
|
|
name=Name,
|
|
version=Version,
|
|
author=Author,
|
|
author_email=AuthorEmail,
|
|
description=ShortDescription,
|
|
long_description=Description,
|
|
license=License,
|
|
scripts=ProjectScripts,
|
|
install_requires=requires,
|
|
include_package_data=True,
|
|
packages=["quantum.plugins.sample"],
|
|
package_data=PackageData,
|
|
eager_resources=EagerResources,
|
|
)
|