-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
44 lines (41 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
import os
import setuptools
description = "Yet another common wrapper for Alice/Salut skills and Facebook/Telegram/VK bots"
long_description = description
if os.path.exists("README_en.md"):
with open("README_en.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="dialogic",
version="0.3.20",
author="David Dale",
author_email="[email protected]",
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/avidale/dialogic",
packages=setuptools.find_packages(),
license="MIT",
classifiers=[
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'attrs',
'flask',
'pymessenger',
'pymorphy2',
'pyTelegramBotAPI',
'pyyaml',
'requests',
'textdistance',
'colorama',
],
extras_require={
'rumorph': ['pymorphy2[fast]', 'pymorphy2-dicts-ru'], # todo: move them out of main requirements
'server': ['flask', 'pymessenger', 'pyTelegramBotAPI'], # todo: move them out of main requirements
'w2v': ['numpy', 'pyemd'],
}
)