-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
63 lines (60 loc) · 1.83 KB
/
setup.py
File metadata and controls
63 lines (60 loc) · 1.83 KB
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
60
61
62
63
from setuptools import find_packages, setup
import versioneer
with open("README.md", "r", encoding="utf-8") as file:
long_description = file.read()
setup(
name="smart_app_framework",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="SberDevices",
author_email="developer@sberdevices.ru",
description="SmartApp Framework — это фреймворк, "
"который позволяет создавать смартапы "
"с поддержкой виртуальных ассистентов Салют.",
long_description=long_description,
long_description_content_type="text/markdown",
license="sberpl-2",
packages=find_packages(exclude=[]),
include_package_data=True,
install_requires=[
"aiohttp==3.7.4",
"aioredis==2.0.0",
"boto==2.49.0",
"confluent_kafka==1.7.0",
"croniter",
"dawg==0.8.0",
"dill==0.3.3",
"ics==0.6",
"Jinja2==3.0.3",
"keras==2.6.0",
"lazy",
"nltk==3.5",
"numpy",
"objgraph==3.4.1",
"prometheus-client==0.7.1",
"psutil==5.8.0",
"pyignite==0.5.2",
"pymorphy2==0.8",
"pymorphy2_dicts==2.4.393442.3710985",
"python-dateutil==2.7.3",
"python-json-logger==0.1.11",
"PyYAML==5.3",
"redis",
"requests==2.22.0",
"rusenttokenize==0.0.5",
"scikit-learn==0.24.1",
"setuptools",
"tabulate",
"tatsu==4.4.0",
"tensorflow==2.6.0",
"timeout-decorator==0.4.1",
"tqdm",
"Twisted",
"freezegun==1.1.0",
],
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.9"
]
)