-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (26 loc) · 828 Bytes
/
setup.py
File metadata and controls
28 lines (26 loc) · 828 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
from setuptools import setup, find_packages
version = "0.0.1"
setup(
name="botarang",
packages=find_packages(),
version=version,
description="Ui elements for building telegram bot",
long_description="Ui elements for building telegram bot",
author="Ruslan Roskoshnyj",
author_email="i.am.yarger@gmail.com",
url="https://github.com/newmediatech/botarang",
download_url="https://github.com/ruslux/newmediatech/archive/{}.tar.gz".format(version),
keywords=["telegram", "bot", "ui", "framework"],
classifiers=[],
python_requires=">3.7.0",
platforms=["OS Independent"],
license="LICENSE.txt",
install_requires=[],
extras_require={
"tests": [
"pytest (==3.4.0)",
"coverage (==4.5)",
"pytest-cov (==2.5.1)",
]
}
)