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:
parent
b1b0aeb69d
commit
eb6b1866f1
@ -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"
|
||||
]
|
||||
)
|
||||
|
Loading…
Reference in New Issue
Block a user