-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
40 lines (32 loc) · 991 Bytes
/
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
[tool.poetry]
name = "samarium"
version = "0.6.2"
description = "The Samarium Programming Language"
authors = ["trag1c <[email protected]>"]
license = "MIT"
documentation = "https://samarium-lang.github.io/Samarium/"
repository = "https://github.com/samarium-lang/Samarium"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
dahlia = "^3.0.0"
crossandra = "^2.2.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.4.8"
mkdocs = "^1.5.1"
mkdocs-material = "^9.1.21"
mypy = "^1.10.0"
mike = "^2.1.1"
[tool.ruff.lint]
select = ["ALL"]
ignore = ["COM", "D", "DTZ", "FIX", "S", "SLF", "ANN1", "ANN401", "C90", "ISC001", "T201", "TD003", "PLR2004", "PLR091", "PERF203", "PYI034"]
[tool.ruff.lint.pylint]
max-returns = 8
[tool.mypy]
disable_error_code = "attr-defined, override"
[tool.poetry.scripts]
samarium = "samarium.__main__:main"
samarium-debug = "samarium.__init__:main_debug"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"