Python-Spamprotection-API/setup.py

30 lines
864 B
Python
Raw Normal View History

2021-01-02 06:08:55 +01:00
#!/usr/bin/env python
import setuptools
2021-01-02 09:03:20 +01:00
from spamprotection import __version__
2021-01-02 06:08:55 +01:00
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt") as f:
dependencies = [_.strip() for _ in f]
setuptools.setup(
name="Intellivoid Spamprotection",
2021-01-02 09:03:20 +01:00
version=__version__,
description="Python Spamprotection API Wrapper",
2021-01-02 06:08:55 +01:00
long_description=long_description,
long_description_content_type="text/markdown",
license="GNU Lesser General Public License v3 (LGPLv3)",
author="Pokurt",
author_email="poki@pokurt.me",
url="https://github.com/intellivoid/Python-Spam-Protection-API",
2021-01-02 06:08:55 +01:00
packages=setuptools.find_packages(),
classifiers=[
2021-01-02 10:09:20 +01:00
"Development Status :: 3 - Alpha",
2021-01-02 06:08:55 +01:00
"Programming Language :: Python :: 3.8",
],
install_requires=dependencies,
python_requires=">=3.6",
)