-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.29 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.29 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
import setuptools
# Package metadata
NAME = "PyRexBot"
VERSION = "1.0.4"
DESCRIPTION = "PyBotRex simplifies Telegram bot creation with a clean and intuitive interface for commands, messaging, buttons, and more."
URL = "https://github.com/TraxDinosaur/PyRexBot"
AUTHOR = "TraxDinosaur"
AUTHOR_CONTACT = "https://traxdinosaur.github.io"
LICENSE = "CC-BY-SA 4.0"
KEYWORDS = [
"Telegram Bot", "Python Telegram Bot", "Telegram API", "Bot Development", "Python Bot Library",
"Interactive Bots", "PyBotRex", "Bot Framework", "Telegram Python Bot", "Telegram Bot Toolkit"
]
# Read long description from README.md
with open("README.md", "r", encoding="utf-8") as fh:
LONG_DESCRIPTION = fh.read()
# Packages required by the project
REQUIRED_PACKAGES = [
"python-telegram-bot>=20.0"
]
setuptools.setup(
name=NAME,
version=VERSION,
author=AUTHOR,
author_contact=AUTHOR_CONTACT,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type="text/markdown",
url=URL,
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved",
"Operating System :: OS Independent",
],
keywords=KEYWORDS,
install_requires=REQUIRED_PACKAGES,
python_requires=">=3.7",
)