forked from fabric/patchwork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (40 loc) · 1.62 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
#!/usr/bin/env python
# Would love to use distutils but fuck manually keeping a list of all my
# subpackages by hand :(
from setuptools import setup, find_packages
# Version info -- read without importing
_locals = {}
version_module = execfile('patchwork/_version.py', _locals)
version = _locals['__version__']
setup(
name='patchwork',
version=version,
description='Common deploy/sysadmin operations',
license='BSD',
long_description="""This is an unsupported alpha release! Use with caution.
Dev install: https://github.com/fabric/patchwork/tarball/master#egg=patchwork-dev""",
author='Jeff Forcier',
author_email='[email protected]',
url='http://patchwork.fabfile.org',
install_requires=["fabric>=1.4"],
packages=find_packages(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'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 :: Software Distribution',
'Topic :: System :: Systems Administration',
],
)