forked from tomer8007/kik-bot-api-unofficial
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (55 loc) · 1.62 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
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
from codecs import open
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as fh:
long_description = "\n" + fh.read()
VERSION = "0.5.0"
DESCRIPTION = "Python API for writing unoffical kik bots that act like humans"
setup(
name="kik_unofficial",
version=VERSION,
author="Tomer",
author_email="[email protected]",
description=DESCRIPTION,
long_description_content_type="text/markdown",
long_description=long_description,
url="https://github.com/tomer8007/kik-bot-api-unofficial",
download_url="https://github.com/tomer8007/kik-bot-api-unofficial/tarball/new",
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
],
keywords=[
"kik",
"bot",
"kikbot",
"kik-messenger-platform",
"api",
"unofficial",
"python",
],
packages=find_packages(exclude=["docs", "test"]),
install_requires=[
"pbkdf2",
"rsa",
"lxml",
"bs4",
"protobuf>=4.21.0",
"requests",
"pillow",
"pyDes",
"python-dotenv",
"PyYAML~=6.0.1",
"defusedxml~=0.7.1",
"lxml~=4.9.3",
"beautifulsoup4~=4.12.2",
"colorama",
],
extras_require={"dev": [], "test": []},
package_data={"kik_unofficial": []},
entry_points={"console_scripts": ["kikapi=kik_unofficial.cmdline:execute"]},
)