-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (32 loc) · 878 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
29
30
31
32
33
34
35
36
37
from setuptools import setup
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='[email protected]',
install_requires=[
'Click',
'jinja2'
],
license='MIT',
packages=['lustmolch'],
entry_points={
'console_scripts': ['lustmolch=lustmolch.cli:cli']
},
include_package_data=True,
zip_safe=False
)