-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (43 loc) · 1.32 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
p_version = "2.0.3"
with open("README.md", 'r', encoding='utf-8') as f:
long_description = f.read()
setup(
name="shablbot",
version=p_version,
author="Alexandr Drachenin",
author_email="[email protected]",
packages=find_packages(),
url="https://github.com/Blackgard/shablbot",
download_url="https://github.com/Blackgard/shablbot/tarball/v{0}".format(p_version),
license="MIT",
description="Бот написанный на Python для социальной сети Вконтакте, работающий через VkBotLongPull",
long_description=long_description,
long_description_content_type="text/markdown",
include_package_data=True,
keywords=[
"python",
"bot",
"vk",
"template"
],
python_requires='>=3.9',
install_requires = [
"vk-api==11.9.4",
"requests==2.31.0",
"pytz==2021.1",
"loguru==0.5.3",
"python-dotenv==0.19.0",
"pydantic==1.8.2",
"anytree==2.8.0",
"certifi==2021.10.8",
"charset-normalizer==2.0.7",
"colorama==0.4.4",
"idna==3.3",
"six==1.16.0",
"typing-extensions==3.10.0",
"urllib3==1.26.18",
"win32-setctime==1.0.3"
],
)