-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
45 lines (38 loc) · 1.05 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
from setuptools import find_packages
from setuptools import setup
version = '2.5.3.dev0'
setup(name='XenianBot',
version=version,
description="Multifunctional Telegram Bot",
long_description=f'{open("README.rst").read()}\n{open("CHANGELOG.rst").read()}',
author='Nachtalb',
url='https://github.com/Nachtalb/XenianBot',
license='GPL3',
packages=find_packages(exclude=['ez_setup']),
namespace_packages=['xenian'],
include_package_data=True,
zip_safe=False,
install_requires=[
'emoji',
'googletrans',
'gtts',
'htmlmin',
'mako',
'moviepy',
'mr.developer',
'paramiko',
'pillow',
'pybooru',
'pymongo',
'pytesseract',
'python-telegram-bot',
'requests',
'requests-html',
'setuptools',
'urbandictionary',
'youtube-dlc',
],
entry_points={
'console_scripts': [
'bot = xenian.bot.bot:main']
})