mirror of
https://github.com/Mailu/Mailu.git
synced 2025-01-20 03:29:50 +02:00
Specify dependencies in the setup script
This commit is contained in:
parent
b1b0aeb69d
commit
eb6b1866f1
@ -2,13 +2,21 @@
|
|||||||
|
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
|
with open("README.md", "r") as fh:
|
||||||
|
long_description = fh.read()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="Podop",
|
name="podop",
|
||||||
version="0.1",
|
version="0.1.1",
|
||||||
description="Postfix and Dovecot proxy",
|
description="Postfix and Dovecot proxy",
|
||||||
|
long_description=long_description,
|
||||||
|
long_description_content_type="text/markdown",
|
||||||
author="Pierre Jaury",
|
author="Pierre Jaury",
|
||||||
author_email="pierre@jaury.eu",
|
author_email="pierre@jaury.eu",
|
||||||
url="https://github.com/mailu/podop.git",
|
url="https://github.com/mailu/podop.git",
|
||||||
packages=["podop"],
|
packages=["podop"],
|
||||||
scripts=["scripts/podop"]
|
scripts=["scripts/podop"],
|
||||||
|
install_requires=[
|
||||||
|
"aiohttp"
|
||||||
|
]
|
||||||
)
|
)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user