Skip to content
Snippets Groups Projects
Commit feb51a24 authored by Thomas Reifenberger's avatar Thomas Reifenberger
Browse files

Fix dependencies

parent 86398b35
No related branches found
No related tags found
No related merge requests found
# python-mkp
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'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment