1
0
mirror of https://github.com/Mailu/Mailu.git synced 2024-12-12 10:45:38 +02:00

Specify dependencies in the setup script

This commit is contained in:
Pierre Jaury 2018-07-25 20:49:16 +02:00 committed by Alexander Graf
parent b1b0aeb69d
commit eb6b1866f1
No known key found for this signature in database
GPG Key ID: B8A9DC143E075629

View File

@ -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"
]
)