Remove wrong dependency to importlib

main
kaiyou 5 years ago committed by Alexander Graf
parent ef344c62f6
commit 7f6d51904b
No known key found for this signature in database
GPG Key ID: B8A9DC143E075629

@ -1,5 +1,6 @@
#!/usr/bin/env python
import setuptools
from distutils.core import setup
with open("README.md", "r") as fh:
@ -7,7 +8,7 @@ with open("README.md", "r") as fh:
setup(
name="socrate",
version="0.1",
version="0.1.1",
description="Socrate daemon utilities",
long_description=long_description,
long_description_content_type="text/markdown",
@ -18,7 +19,6 @@ setup(
include_package_data=True,
install_requires=[
"jinja2",
"importlib",
"tenacity"
]
)

Loading…
Cancel
Save