forked from pdokoupil/EasyStudy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.07 KB
/
Copy pathpyproject.toml
File metadata and controls
58 lines (51 loc) · 1.07 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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "study-framework"
version = "0.1.0"
description = "Plugin-first study framework kernel and study plugins."
requires-python = ">=3.9,<3.11"
dependencies = [
"beautifulsoup4",
"cachelib",
"cachetools",
"cinemagoer",
"Flask",
"Flask-Login",
"Flask-Session",
"Flask-SQLAlchemy",
"Flask-WTF",
"gunicorn",
"is-safe-url",
"jmetalpy",
"numpy",
"polars",
"psycopg2-binary",
"python3-discogs-client",
"recommenders",
"sentence-transformers",
"SQLAlchemy",
"tensorflow",
"tensorflow-recommenders",
"tf-keras",
"torch",
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
]
[tool.setuptools.packages.find]
include = ["server*", "tests*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 100
target-version = "py39"
extend-exclude = [".venv", "server/.venv39"]
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"