-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (25 loc) · 1.04 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
# | Created by Ar4ikov
# | Время: 27.12.2019 - 22:18
from setuptools import setup
from os import path
class VkBotLight_Setup:
def __init__(self):
self.package = "vkbotlight"
self.__version__ = open(path.join(path.dirname(__file__), "vkbotlight", "version.txt"), "r").read()
def setup(self):
setup(
name="vkbotlight",
version=self.__version__,
install_requires=["flask", "requests"],
packages=[self.package],
package_data={self.package: ["*.txt", "*.json"]},
include_package_data=True,
url="https://github.com/Ar4ikov/VkBotLight",
license="MIT Licence",
author="Nikita Archikov",
author_email="bizy18588@gmail.com",
description="A VK Wrapper for easily creating your own bots",
long_description=open("readme.md", "r").read(),
keywords="opensource vk bot vkbot vkapi api vkbotlight vklight vk_bot_light vk_light vk_api vk_bot_api"
)
VkBotLight_Setup().setup()