This repository has been archived by the owner on Mar 24, 2023. It is now read-only.
forked from fabric/fabric
-
Notifications
You must be signed in to change notification settings - Fork 107
/
setup.py
70 lines (59 loc) · 2.53 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
from __future__ import with_statement
from setuptools import setup, find_packages
from fabric.version import get_version
long_description = """
Fabric3 is a fork of `Fabric <http://fabfile.org>`_ to provide compatability
with Python 3.4+. The port still works with Python 2.7.
The goal is to stay 100% compatible with the original Fabric. Any new releases
of Fabric will also be released here. Please file issues for any differences
you find. Known differences are `documented on github
<https://github.com/mathiasertl/fabric/>`.
To find out what's new in this version of Fabric, please see `the changelog
<http://fabfile.org/changelog.html>`_ of the original Fabric.
For more information, please see the Fabric website or execute ``fab --help``.
"""
install_requires=['paramiko>=2.0,<3.0', 'six>=1.10.0']
setup(
name='Fabric3',
version=get_version('short'),
description='Fabric is a simple, Pythonic tool for remote execution and deployment (py2.7/py3.4+ compatible fork).',
long_description=long_description,
author='Jeff Forcier',
author_email='[email protected]',
maintainer='Mathias Ertl',
maintainer_email='[email protected]',
url='https://github.com/mathiasertl/fabric/',
packages=find_packages(),
test_suite='nose.collector',
tests_require=['nose<2.0', 'fudge<1.0', 'jinja2<3.0'],
install_requires=install_requires,
entry_points={
'console_scripts': [
'fab = fabric.main:main',
]
},
classifiers=[
'Development Status :: 5 - Production/Stable',
'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',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'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',
],
)