forked from mrlvsb/kelvin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
67 lines (63 loc) · 1.35 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
[project]
name = "kelvin"
version = "0.1.0"
description = "Code examination tool"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"beautifulsoup4==4.11.1",
"bokeh==2.3.2",
"cssselect==1.1.0",
"django==4.2.16",
"django-cas-ng==4.3.0",
"django-notifications-hq==1.8.0",
"django-redis>=5.4.0",
"django-rq==2.10.2",
"django-tasks-scheduler==1.3.4",
"django-webpush==0.3.4",
"imageio==2.6.1",
"Jinja2==2.11.3",
"lxml==5.1.0",
"markdown==3.7",
"MarkupSafe==2.0.1",
"mdx-truly-sane-lists==1.3",
"mosspy==1.0.9",
"networkx==2.5",
"numpy==1.26.4",
"oauthlib==3.2.2",
"pandas==2.2.1",
"psycopg[binary]==3.2.1",
"pygraphviz==1.7",
"pymdown-extensions==10.10.1",
"pyserde==0.13.1",
"python-dotenv==1.0.1",
"python-magic==0.4.27",
"pyyaml==6.0.1",
"requests==2.32.3",
"requests_oauthlib==1.3.1",
"six==1.16.0",
"setuptools==69.1.0",
"typing-extensions==4.11.0",
"Unidecode==1.3.6",
"uWSGI==2.0.24",
]
[tool.uv]
dev-dependencies = [
"pre-commit>=3.8.0",
"ruff==0.6.3",
]
[tool.ruff]
target-version = "py312"
line-length = 100
indent-width = 4
include = [
"api/**/*.py",
"common/**/*.py",
"evaluator/**/*.py",
"kelvin/**/*.py",
"survey/**/*.py",
"web/**/*.py"
]
extend-exclude = [
"**/migrations/**"
]