- move scripts to assets/scripts (and updated build) - put most logic into HaproxyConfigGenerator - created DockerLabelHandler for all label handling from previous code - added unit tests and fixtures to cover HaproxyConfigGenerator and DockerLabelHandler - added a Makefile with build (for docker build) and test targets
20 lines
402 B
Python
20 lines
402 B
Python
from setuptools import setup, find_packages
|
|
|
|
|
|
with open('README.md') as f:
|
|
readme = f.read()
|
|
|
|
with open('LICENSE') as f:
|
|
license = f.read()
|
|
|
|
setup(
|
|
name='easymapping',
|
|
version='0.1.0',
|
|
description='HAProxy label based routing',
|
|
long_description=readme,
|
|
author='',
|
|
author_email='',
|
|
url='',
|
|
license=license,
|
|
packages=find_packages(exclude=('tests', 'docs'))
|
|
)
|