|
|
|
@ -2,13 +2,21 @@
|
|
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
|
|
|
|
|
|
with open("README.md", "r") as fh:
|
|
|
|
|
long_description = fh.read()
|
|
|
|
|
|
|
|
|
|
setup(
|
|
|
|
|
name="Podop",
|
|
|
|
|
version="0.1",
|
|
|
|
|
name="podop",
|
|
|
|
|
version="0.1.1",
|
|
|
|
|
description="Postfix and Dovecot proxy",
|
|
|
|
|
long_description=long_description,
|
|
|
|
|
long_description_content_type="text/markdown",
|
|
|
|
|
author="Pierre Jaury",
|
|
|
|
|
author_email="pierre@jaury.eu",
|
|
|
|
|
url="https://github.com/mailu/podop.git",
|
|
|
|
|
packages=["podop"],
|
|
|
|
|
scripts=["scripts/podop"]
|
|
|
|
|
scripts=["scripts/podop"],
|
|
|
|
|
install_requires=[
|
|
|
|
|
"aiohttp"
|
|
|
|
|
]
|
|
|
|
|
)
|
|
|
|
|