-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
69 lines (65 loc) · 2.14 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
60
61
62
63
64
65
66
67
68
69
import pathlib
import setuptools
LOCATION = pathlib.Path(__file__).parent.resolve()
readme_file = LOCATION / "README.md"
long_description = readme_file.open(encoding="utf8").read()
setuptools.setup(
name="dff_node_stats",
version="0.1.2",
scripts=[],
author="Denis Kuznetsov",
author_email="[email protected]",
description="Statistics collection extension for Dialog Flow Framework "
"(https://github.com/deepmipt/dialog_flow_framework).",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/kudep/dff-node-stats",
packages=setuptools.find_packages(where="."),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
extras_require={
"api": ["fastapi>=0.68.0", "uvicorn>=0.14.0"],
"streamlit": ["streamlit>=1.1.0", "graphviz>=0.17", "plotly>=5.5.0"],
"jupyter": [
"ipywidgets==7.6.5",
"traitlets==5.1.1",
"graphviz>=0.17",
"plotly>=5.5.0",
],
"dev": [
"infi.clickhouse-orm==2.1.1",
"psycopg2>=2.9.2",
"SQLAlchemy==1.4.27",
"fastapi>=0.68.0",
"uvicorn>=0.14.0",
"streamlit>=1.1.0",
"graphviz==0.17",
"ipywidgets==7.6.5",
"traitlets==5.1.1",
"plotly>=5.5.0",
],
"all": [
"infi.clickhouse-orm==2.1.1",
"psycopg2>=2.9.2",
"SQLAlchemy==1.4.27",
"fastapi>=0.68.0",
"uvicorn>=0.14.0",
"streamlit>=1.1.0",
"graphviz==0.17",
"ipywidgets==7.6.5",
"traitlets==5.1.1",
"plotly>=5.5.0",
],
"pg": ["psycopg2>=2.9.2", "SQLAlchemy==1.4.27"],
"clickhouse": ["infi.clickhouse-orm==2.1.1"],
},
install_requires=[
"pandas>=1.3.1",
"df_engine>=0.8.1",
"tqdm>=4.62.3",
"pydantic>=1.8.2",
],
)