-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
48 lines (44 loc) · 1.95 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
import sys
try:
from setuptools import setup, find_packages
except ImportError:
print "Please instal distribute from http://pypi.python.org/pypi/distribute"
print "before installing FabriKokki."
sys.exit(1)
from fabrikokki.version import get_version
README_CONTENTS = open("README").read()
setup(name='fabrikokki',
version='0.1.0',
author='Steve Steiner',
author_email='[email protected]',
url='http://github.com/ssteinerX/FabriKokki/',
download_url='http://github.com/ssteinerX/FabriKokki/',
description='API between Fabric and Kokki.',
long_description=README_CONTENTS,
packages=['fabrikokki'],
provides=['fabrikokki'],
keywords='fabric kokki chef puppet',
license='BSD License',
classifiers=['Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Environment :: Console',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Clustering',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
],
requires = ['fabric', 'kokki'],
)