-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
30 lines (27 loc) · 1015 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
from distribute_setup import use_setuptools; use_setuptools()
from setuptools import setup, find_packages
setup(
name = "python-cloudservers",
version = "1.0a1",
description = "Client library for Rackspace's Cloud Servers API",
url = 'http://packages.python.org/python-cloudservers',
license = 'BSD',
author = 'Jacob Kaplan-Moss',
author_email = '[email protected]',
packages = find_packages(),
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
],
install_requires = ['httplib2', 'cmdln', 'prettytable'],
tests_require = ["nose", "mock"],
test_suite = "nose.collector",
entry_points = {
'console_scripts': ['cloudservers = cloudservers.shell:main']
}
)