2019-05-06 14:06:25 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2019-05-06 15:09:49 +02:00
|
|
|
import setuptools
|
2019-05-06 14:06:25 +02:00
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name="socrate",
|
2019-05-06 15:09:49 +02:00
|
|
|
version="0.1.1",
|
2019-05-06 14:06:25 +02:00
|
|
|
description="Socrate daemon utilities",
|
|
|
|
long_description=long_description,
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
author="Pierre Jaury",
|
|
|
|
author_email="pierre@jaury.eu",
|
|
|
|
url="https://github.com/mailu/socrate.git",
|
|
|
|
packages=["socrate"],
|
|
|
|
include_package_data=True,
|
|
|
|
install_requires=[
|
|
|
|
"jinja2",
|
|
|
|
"tenacity"
|
|
|
|
]
|
|
|
|
)
|