You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
562 B
Python
25 lines
562 B
Python
#!/usr/bin/env python
|
|
|
|
import setuptools
|
|
from distutils.core import setup
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="socrate",
|
|
version="0.2.0",
|
|
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"
|
|
]
|
|
)
|