You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mailu/core/base/libs/podop/setup.py

24 lines
547 B
Python

6 years ago
#!/usr/bin/env python
from setuptools import setup
6 years ago
with open("README.md", "r") as fh:
long_description = fh.read()
6 years ago
setup(
name="podop",
version="0.2.5",
6 years ago
description="Postfix and Dovecot proxy",
long_description=long_description,
long_description_content_type="text/markdown",
6 years ago
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"
]
6 years ago
)