-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
52 lines (46 loc) · 1.17 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
[project]
name = "tanco"
version = "0.0.9"
description='A tool for test-driven teaching.'
dependencies = [
"jwt ~= 1.3.1",
"requests ~= 2.31.0",
"quart ~= 0.19.4",
"hypercorn ~= 0.16.0",
"websockets ~= 12.0"]
maintainers = [
{ name = "Michal J Wallace", email = "[email protected]" }]
classifiers = [
"License :: OSI Approved :: MIT License"]
readme = "README.md"
license = {text="MIT"}
requires-python = ">=3.10"
[project.urls]
"Homepage" = "https://tangentcode.com/"
"Source" = "https://github.com/tangentcode/tanco"
"Live Server" = "https://tanco.tangentcode.com/"
[project.scripts]
tanco = "tanco.driver:main"
[build-system]
build-backend = "setuptools.build_meta"
# setuptools-scm causes it to include all files tracked by git
# (so we get sql/init.sql and other non-python files)
requires = [
"setuptools>=60",
"setuptools-scm>=8.0"]
[tool.ruff]
line-length = 120
select = [
'E', 'F', 'I',
'YTT', 'COM', 'T10', 'ISC', 'G', 'PIE', 'Q', 'RSE',
'PLC', 'PLE',
'RUF',
]
ignore = [
'E701', # multiple statements on one line
]
[tool.ruff.flake8-quotes]
inline-quotes = 'single'
multiline-quotes = 'double'
[tool.ruff.isort]
lines-after-imports = 1