-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
46 lines (39 loc) · 1.12 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
from setuptools import find_packages, setup
setup(
name='dockalot',
description=('Build Docker images for the real world '
'using ansible playbooks'),
author='Mark Aikens',
author_email='[email protected]',
license='MIT',
url='https://github.com/markadev/dockalot',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System :: Installation/Setup',
'Topic :: Utilities',
],
packages=find_packages(),
entry_points={
'console_scripts': ['dockalot=dockalot.docker:main'],
},
install_requires=[
'ansible>=2.1',
'docker-py',
'pyyaml',
'six',
],
tests_require=[
'docker-py',
'mock~=2.0',
'pytest~=3.0',
],
use_scm_version=True,
setup_requires=['setuptools_scm', 'pytest-runner'],
)
# vim:set ts=4 sw=4 expandtab: