-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (36 loc) · 1.01 KB
/
Copy pathsetup.py
File metadata and controls
39 lines (36 loc) · 1.01 KB
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
38
39
from setuptools import setup
setup(
name='foreman-dlm-updater',
version='0.0.2',
description='ForemanDlmUpdater, Linux client counterpart to the awesome Foreman DLM plugin.',
long_description="""
foreman-dlm-updater is a helper script that allows to do graceful, rolling updates on clustered Linux systems.
Copyright (c) 2018, Stephan Schultchen.
License: MIT (see LICENSE for details)
""",
packages=['foreman_dlm_updater'],
scripts=[
'contrib/foreman_dlm_updater',
],
url='https://github.com/schlitzered/foreman_dlm_updater',
license='MIT',
author='schlitzer',
author_email='stephan.schultchen@gmail.com',
test_suite='test',
platforms='posix',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
setup_requires=[
'pep3143daemon',
'requests'
],
install_requires=[
'pep3143daemon',
'requests'
],
keywords=[
'foreman', 'dlm',
]
)