mirror of
https://github.com/Mailu/Mailu.git
synced 2024-12-16 10:59:53 +02:00
24 lines
547 B
Python
24 lines
547 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name="podop",
|
|
version="0.2.5",
|
|
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"],
|
|
include_package_data=True,
|
|
scripts=["scripts/podop"],
|
|
install_requires=[
|
|
"aiohttp"
|
|
]
|
|
)
|