Skip to content
Snippets Groups Projects
setup.py 878 B
Newer Older
from setuptools import setup

Michael Loipführer's avatar
Michael Loipführer committed
VERSION = '1.1.0'
AUTHOR = 'Michael Loipführer'


def readme():
    with open('README.md') as f:
        return f.read()


setup(
    name='lustmolch',
    version=VERSION,
    description='Lustmolch systemd nspwan container utilities',
    long_description=readme(),
    url='http://gitlab.stusta.de/stustanet/lustmolch',
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'License :: OSI Approved :: MIT License',
        'Programming Language :: Python :: 3.7',
        'Operating System :: POSIX :: Linux'
    ],
    author=AUTHOR,
    author_email='ml@stusta.de',
    install_requires=[
        'Click',
        'jinja2'
    ],
    license='MIT',
    packages=['lustmolch'],
    entry_points={
        'console_scripts': ['lustmolch=lustmolch.cli:cli']
    },
    include_package_data=True,
    zip_safe=False
)