-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
36 lines (32 loc) · 1.36 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
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'],
extras_require={'dev': [],'test': []},
package_data={'kik_unofficial': []},
entry_points={'console_scripts': ['kikapi=kik_unofficial.cmdline:execute']},
)