forked from samuel/kokki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 883 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
31
32
#!/usr/bin/env python
from setuptools import setup, find_packages
import os
execfile(os.path.join('kokki', 'version.py'))
setup(
name = 'kokki',
version = VERSION,
description = 'Kokki is a system configuration management framework influenced by Chef',
author = 'Samuel Stauffer',
author_email = '[email protected]',
url = 'http://samuelks.com/kokki/',
packages = find_packages(),
test_suite = "tests",
entry_points = {
"console_scripts": [
"kokki = kokki.command:main",
],
},
classifiers = [
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires = [
'jinja2',
],
)