-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
131 lines (114 loc) · 2.97 KB
/
pyproject.toml
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
# https://python-poetry.org/docs/pyproject/
[tool.poetry]
name = "decenter-ai.streamlit.app"
version = "0.6.0"
description = "Official decenter ai infra app"
authors = ["Nasfame <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://decenter-ai.streamlit.app"
repository = "https://github.com/Decenter-AI/decenter-ai.streamlit.app"
documentation = "https://github.com/Decenter-AI/decenter-ai.streamlit.app"
keywords = ["ai", "decenter", "ai-infra"]
packages = []
classifiers = [
"Topic :: Software Development :: Build Tools",
"Programming Language :: Python :: 3.x",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Streamlit",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Your License Here",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: System :: Distributed Computing",
"Topic :: System :: Networking",
]
[tool.poetry.dependencies]
python = "^3.10"
streamlit = "^1.25.0"
black = "^23.9.1"
clarifai = "^9.9.0"
clarifai-grpc = "^9.8.2"
colorama = "^0.4.6"
colored = "^2.2.3"
gtts = ">=2.3.2,<2.4.0"
icecream = "^2.1.3"
joblib = "^1.3.2"
openai = "^0.28.0"
pinecone-client = "^2.2.2"
pytest = ">=7.4.0,<7.5.0"
python-dotenv = "1.0.0"
pychroot = "0.9.18"
dataclasses-json = "^0.6.1"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.1.0"
pytest-benchmark = "^4.0.0"
flake8-in-file-ignores = "^0.2.2"
pre-commit = "^3.4.0"
robotframework = "^6.1.1"
robotframework-SeleniumLibrary = "^6.1.3"
selenium = "^4.14.0"
coverage = "^7.3.2"
[tool.poetry.group.ml.dependencies]
numpy = "^1.25.2"
pandas = "^2.1.0"
requests = ">=2.31.0,<2.32.0"
scikit-learn = "^1.3.0"
jupyter = "^1.0.0"
matplotlib = "^3.8.0"
ipykernel = "^6.25.2"
beautifulsoup4 = "^4.12.2"
seaborn = "^0.13.0"
spacy = "^3.6.1"
statsmodels = "^0.14.0"
tensorflow-addons = "^0.21.0"
regex = "^2023.8.8"
shap = "^0.43.0"
xgboost = "^2.0.0"
keras = "^2.14.0"
[tool.poetry.group.tensorflow-addons.dependencies]
regex = "^2023.10.3"
[build-system]
# requires = ["python>=3.10", "setuptools", "wheel"]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
[tool.poetry.extras]
dev = ['pytest']
ml = [
"numpy",
"pandas",
"scikit-learn",
"matplotlib",
"seaborn",
"tensorflow",
"keras",
"pytorch",
"spacy",
]
# A list of all of the optional dependencies, some of which are included in the
# poetry install --extras
# poetry install --all-extras
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/Decenter-AI/decenter-ai.streamlit.app/issues"
[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''