-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
101 lines (93 loc) · 2.75 KB
/
Copy pathpyproject.toml
File metadata and controls
101 lines (93 loc) · 2.75 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
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
[project]
name = "codaro"
version = "0.0.12"
description = "Programmable studio — interactive editor runtime for code, learning, and automation"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "eddmpython", email = "206024502+eddmpython@users.noreply.github.com" }
]
requires-python = ">=3.12"
keywords = [
"automation",
"curriculum",
"desktop-automation",
"local-first",
"notebook",
"python",
"reactive",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"License :: Other/Proprietary License",
"Natural Language :: Korean",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Education",
"Topic :: Office/Business",
"Topic :: Software Development",
]
dependencies = [
"fastapi>=0.135.1",
# 학습 셀의 로컬-우선 자동완성 엔진. 순수 Python·오프라인이라 provider 없이도 즉시 동작한다.
"jedi>=0.19.2",
"pydantic>=2.12.5",
"pyyaml>=6.0",
"requests>=2.32.0",
"uvicorn[standard]>=0.41.0",
# 전역 터미널(에디터 하단 패널)의 백엔드 PTY. Windows는 ConPTY를 pywinpty로 띄우고,
# POSIX는 표준 라이브러리 pty를 쓰므로 별도 의존성이 없다.
"pywinpty>=2.0.13; sys_platform == 'win32'",
"markdown>=3.10.2",
]
[project.optional-dependencies]
dev = [
"httpx>=0.28.1",
"pytest>=9.0.2",
"watchdog>=6.0.0",
]
curriculum = [
"matplotlib>=3.10.9",
"openpyxl>=3.1.5",
"pillow>=12.2.0",
"plotly>=6.7.0",
"polars>=1.41.1",
"python-docx>=1.2.0",
"scikit-learn>=1.8.0",
"scipy>=1.17.1",
"seaborn>=0.13.2",
"statsmodels>=0.14.6",
]
[project.scripts]
codaro = "codaro:main"
[project.urls]
Homepage = "https://eddmpython.github.io/codaro/"
Repository = "https://github.com/eddmpython/codaro"
Issues = "https://github.com/eddmpython/codaro/issues"
Changelog = "https://github.com/eddmpython/codaro/releases"
Download = "https://github.com/eddmpython/codaro/releases/latest/download/Codaro.exe"
[build-system]
requires = ["uv_build>=0.9.15,<0.10.0"]
build-backend = "uv_build"
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
select = [
"BLE001",
"S110",
"S112",
"TRY400",
]
[tool.ruff.lint.per-file-ignores]
"src/codaro/runtime/localWorker.py" = ["BLE001", "S110"]
"src/codaro/outputDescriptor.py" = ["BLE001"]
"src/codaro/serverLog.py" = ["BLE001", "S110"]
"src/codaro/errorGuard.py" = ["BLE001"]
[tool.pytest.ini_options]
python_files = ["test*.py"]
addopts = "-p no:cacheprovider -o cache_dir=output/test-runner/.pytest_cache"