Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
python-mkp
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Package registry
Container Registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
checkmk
python-mkp
Commits
feb51a24
Commit
feb51a24
authored
9 years ago
by
Thomas Reifenberger
Browse files
Options
Downloads
Patches
Plain Diff
Fix dependencies
parent
86398b35
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
README.md
+1
-0
1 addition, 0 deletions
README.md
setup.py
+1
-9
1 addition, 9 deletions
setup.py
with
2 additions
and
9 deletions
README.md
+
1
−
0
View file @
feb51a24
# python-mkp
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
9
View file @
feb51a24
import
sys
from
setuptools
import
find_packages
,
setup
import
versioneer
...
...
@@ -13,19 +11,13 @@ def read_md(filename):
return
open
(
filename
,
'
r
'
).
read
()
install_requirements
=
[]
if
sys
.
version_info
<
(
3
,
4
):
install_requirements
.
append
(
'
enum34
'
)
setup
(
name
=
'
mkp
'
,
version
=
versioneer
.
get_version
(),
url
=
'
https://github.com/tom-mi/python-mkp/
'
,
license
=
'
GPLv2
'
,
author
=
'
Thomas Reifenberger
'
,
tests_require
=
[
'
pytest
'
],
install_requires
=
install_requirements
,
install_requires
=
[],
author_email
=
'
tom-mi at rfnbrgr.de
'
,
description
=
'
Pack and unpack Check_MK mkp files
'
,
long_description
=
read_md
(
'
README.md
'
),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment