summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorMaru Newby <mnewby@internap.com>2012-04-11 02:20:57 -0700
committerMaru Newby <mnewby@internap.com>2012-04-24 14:14:52 -0700
commit05c5a2b4a9b0eb9c0bf88cd81390c7bc906bd289 (patch)
tree529385294ddb9077cf5d3c7e7819939271222389 /setup.py
parent9b09f53a158a6184a560190b0d26293dcc1a44a6 (diff)
downloadpython-neutronclient-05c5a2b4a9b0eb9c0bf88cd81390c7bc906bd289.tar.gz
Remove server-specific functionality.
* Moved server-specific functionality found in quantum.common to the quantum repo. * Renamed primary package from quantum -> quantumclient. * Addresses bug 977711 and bug 921933 Change-Id: If34553924c8dfcc6b148c1d91f173a4b81eeb95a
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index 6b3dc80..087e154 100644
--- a/setup.py
+++ b/setup.py
@@ -36,9 +36,6 @@ ShortDescription = Summary
Description = Summary
requires = [
- 'Paste',
- 'PasteDeploy',
- 'python-gflags',
]
EagerResources = [
@@ -63,12 +60,12 @@ setup(
scripts=ProjectScripts,
install_requires=requires,
include_package_data=False,
- packages=["quantum", "quantum.client", "quantum.common"],
+ packages=["quantumclient", "quantumclient.common"],
package_data=PackageData,
eager_resources=EagerResources,
entry_points={
'console_scripts': [
- 'quantum = quantum.client.cli:main'
+ 'quantum = quantumclient.cli:main'
]
},
)