-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 862 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 862 Bytes
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
import setuptools
setuptools.setup(
name="krutils",
version="0.20230707.1702",
author="bonfireof",
author_email="bonfireof@gmail.com",
description="Some utils for me.",
project_urls={
"Bug Tracker": "https://github.com/bonfireof/krutils",
"Documentation": "https://github.com/bonfireof/krutils",
"Source Code": "https://github.com/bonfireof/krutils",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
# package_dir={"": "krutils"},
# packages=setuptools.find_packages(where="krutils"),
package_dir={"krutils": "krutils"},
packages=["krutils"],
python_requires=">=3.0",
install_requires=[
"PyMySQL>=1.0.3",
'python-telegram-bot'
]
)