PagerMaid-Modify/setup.py

34 lines
982 B
Python
Raw Normal View History

""" Packaging of PagerMaid. """
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
with open("requirements.txt", "r") as fp:
install_requires = fp.read()
setup(
name="pagermaid",
version="2020.2.post13",
author="Stykers",
author_email="stykers@stykers.moe",
description="A telegram utility daemon and plugin framework.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://katonkeyboard.moe/pagermaid.html",
packages=find_packages(),
entry_points={
'console_scripts': [
'pagermaid=pagermaid:__main__'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: Unix"
],
python_requires=">=3.6",
install_requires=install_requires,
include_package_data=True
)