-
Notifications
You must be signed in to change notification settings - Fork 70
/
setup.py
55 lines (49 loc) · 1.82 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
"""LittleChef's setup.py"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
import platform
scripts = ['fix']
if platform.system() == 'Windows':
scripts += ['fix.cmd']
setup(
name="littlechef",
version=__import__('littlechef').__version__,
description="Cook with Chef without a Chef Server",
author="Miquel Torres",
author_email="[email protected]",
url="http://github.com/tobami/littlechef",
download_url="http://github.com/tobami/littlechef/tags",
keywords=["chef", "devops", "operations", "sysadmin"],
install_requires=['fabric>=1.5.4', 'argparse', 'jinja2>=2.7.3'],
packages=['littlechef'],
package_data={
'littlechef': ['solo.rb.j2', 'environment.rb']
# NOTE: Chef 10 only (environment.rb)
},
scripts=['fix'],
tests_require=['nose>=1.0'],
test_suite='nose.collector',
classifiers=[
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable ",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
'Topic :: System :: Systems Administration',
],
long_description="""\
Cook with Chef without a Chef Server
-------------------------------------
With LittleChef you will be able to get started more quickly cooking with
Chef_, the excellent Configuration Management System.
You will just need your local (preferably version controled) kitchen with all
your cookbooks, roles data bags and nodes, which will get rsynced to a node
each time you start a Chef Solo configuration run with the bundled 'fix'
command.
It also adds a library for chef_environment compatibility with Chef 10.
.. _Chef: http://wiki.opscode.com/display/chef/Home
"""
)