forked from goldmann/docker-squash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (24 loc) · 860 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
26
27
28
#!/usr/bin/python
from setuptools import setup, find_packages
from docker_squash.version import version
import codecs
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name = "docker-squash",
version = version,
packages = find_packages(exclude=["tests"]),
url = 'https://github.com/goldmann/docker-squash',
download_url = "https://github.com/goldmann/docker-squash/archive/%s.tar.gz" % version,
author = 'Marek Goldmann',
author_email = '[email protected]',
description = 'Docker layer squashing tool',
license='MIT',
keywords = 'docker',
long_description = codecs.open('README.rst', encoding="utf8").read(),
entry_points = {
'console_scripts': ['docker-squash=docker_squash.cli:run'],
},
tests_require = ['mock'],
install_requires=requirements
)