-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
39 lines (36 loc) · 1.26 KB
/
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
36
37
38
39
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="littlechef-rackspace",
version=__import__('littlechef_rackspace').__version__,
description=("Scripts for bootstrapping Rackspace Cloud Servers "
"with Littlechef"),
author="Dave King",
author_email="[email protected]",
url="http://github.com/tildedave/littlechef-rackspace",
download_url=(
"http://github.com/tildedave/littlechef-rackspace/archives/master"),
keywords=["chef", "rackspace", "openstack", "devops", "operations"],
install_requires=[
"apache-libcloud==0.14.1",
"littlechef==1.6.1",
"PyYAML==3.10",
],
packages=['littlechef_rackspace'],
scripts=['fix-rackspace'],
test_suite='nose.collector',
classifiers=[
"Programming Language :: Python",
"Environment :: Console",
"Intended Audience :: Developers",
],
long_description="""\
Deploy Chef to Rackspace Cloud Servers without a chef server. Replaces
knife-rackspace for users of littlechef.
.. _Chef: http://wiki.opscode.com/display/chef/Home
.. _LittleChef: https://github.com/tobami/littlechef
.. _Rackspace Cloud Servers: http://www.rackspace.com/cloud/servers/
"""
)