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