This repository has been archived by the owner on Jan 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
50 lines (45 loc) · 1.55 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
from distutils.spawn import find_executable
import os
from setuptools import setup, find_packages
from dockerfabric import __version__
def include_readme():
try:
import pandoc
except ImportError:
return ''
pandoc.core.PANDOC_PATH = find_executable('pandoc')
readme_file = os.path.join(os.path.dirname(__file__), 'README.md')
doc = pandoc.Document()
with open(readme_file, 'r') as rf:
doc.markdown = rf.read()
return doc.rst
setup(
name='docker-fabric',
version=__version__,
packages=find_packages(),
install_requires=['six', 'Fabric>=1.8.0', 'docker-py>=1.9.0', 'docker-map>=0.8.0b2'],
extras_require={
'yaml': ['PyYAML'],
},
license='MIT',
author='Matthias Erll',
author_email='[email protected]',
url='https://github.com/merll/docker-fabric',
description='Build Docker images, and run Docker containers in Fabric.',
long_description=include_readme(),
platforms=['OS Independent'],
keywords=['docker', 'fabric'],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Build Tools',
'Topic :: System :: Software Distribution',
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 2.7',
],
include_package_data=True,
)