-
Notifications
You must be signed in to change notification settings - Fork 25
/
setup.py
55 lines (50 loc) · 1.61 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
import sys
from distutils.core import setup
from setuptools import find_packages
with open('README.rst') as description:
long_description = description.read()
fabric_package = sys.version_info < (3, 0) and 'Fabric>=1.1,<2.0' or 'Fabric3>=1.1,<2.0'
install_requires = [
fabric_package,
'frozendict>=1.2,<2.0',
'cached-property>=1.3',
'docker-py>=1.8.1,<2.0',
'six>=1.13.0',
'dpath<2',
'colorama<0.4',
]
setup(
name='fabricio',
version='0.5.8',
author='Rinat Khabibiev',
author_email='[email protected]',
packages=list(map('fabricio.'.__add__, find_packages('fabricio'))) + ['fabricio'],
url='https://github.com/renskiy/fabricio',
license='MIT',
description='Fabricio, Docker deploy automation tool',
long_description=long_description,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Topic :: Utilities',
'Topic :: System :: Networking',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Operating System :: OS Independent',
],
install_requires=install_requires,
extras_require={
'test': [
'argparse',
'mock',
'unittest2',
],
},
)