This repository has been archived by the owner on Nov 29, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
48 lines (43 loc) · 1.7 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
#!/usr/bin/env python
from __future__ import division
from __future__ import with_statement
import os
import re
from distutils.core import setup
# Extract the current version
# Based on: https://github.com/brosner/sqlalchemy/blob/master/setup.py#L12-14
v = open(os.path.join(os.path.dirname(__file__), 'revolver', 'core.py'))
VERSION = re.compile(r".*VERSION = '(.*?)'", re.S).match(v.read()).group(1)
v.close()
setup(
name='revolver',
version=VERSION,
author='Michael Contento',
author_email='[email protected]',
packages=['revolver', 'revolver.test', 'revolver.tool'],
url='https://github.com/michaelcontento/revolver',
license='LICENSE',
description='Pythonic server orchestrating based on fabric / cuisine',
long_description=open('README.md').read(),
keywords=['fabric', 'cuisine', 'chef', 'puppet', 'ssh'],
install_requires=['fabric', 'cuisine'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries',
'Topic :: System :: Clustering',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
'Topic :: Utilities'
],
)