You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
511 B
19 lines
511 B
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
#from distutils.core import setup
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='docker_hosts',
|
|
version="0.2",
|
|
author='Johann Schmitz',
|
|
author_email='johann@j-schmitz.net',
|
|
description='Dynamically creates /etc/hosts entries for docker containers',
|
|
license='GPL-3',
|
|
url='https://git.ercpe.de/ercpe/docker-hosts',
|
|
packages=['docker_hosts'],
|
|
entry_points = {
|
|
'console_scripts': ['docker-hosts=docker_hosts.__main__'],
|
|
}
|
|
)
|