-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (24 loc) · 889 Bytes
/
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
# dodocker setuptools configuration
from setuptools import setup, find_packages
setup(
name = "dodocker",
version = "1.0a01",
zip_safe = True,
packages = find_packages(),
install_requires = ['docker-py',
'PyYAML',
'doit==0.29',
'GitPython',
'requests',
'jinja2',
],
package_data = {},
author = 'Andreas Elvers',
author_email = '[email protected]',
description = 'dodocker is a docker image build tool based on doit and docker-py.',
license = 'Apache License 2.0',
keywords = ['docker','authoring','development'],
download_url = 'https://github.com/nawork/dodocker/tarball/1.0a01',
url = 'http://www.work.de/dodocker',
entry_points = {'console_scripts': ['dodocker = dodocker.main:main']}
)