-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 1.03 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import find_packages, setup
with open("README.md") as readme_file:
readme = readme_file.read()
with open("requirements.txt") as requirements_file:
requirements = requirements_file.read().splitlines()
setup(
author="anonyabbot",
author_email="[email protected]",
python_requires=">=3.10,<3.11",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python :: 3.10",
],
description="Bot server for @anonyabbot in telegram.",
install_requires=requirements,
long_description=readme,
long_description_content_type="text/markdown",
include_package_data=True,
keywords=["telegram", "bot", "server"],
name="anonycnbot",
packages=find_packages(include=["anonyabbot", "anonyabbot.*"]),
url="https://github.com/zetxtech/anonycnbot",
version="1.0.0",
zip_safe=False,
)