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')) )