-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.11 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
[tool.poetry]
name = "generate-resources"
version = "0.1.0"
description = ""
authors = ["insolor <[email protected]>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
streamlit = "^1.41.1"
beautifulsoup4 = "^4.12.3"
peclasses = {version = "^0.4.0", source = "dfint"}
dfint64-patch = {version = "^0.1.0", source = "dfint"}
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
pytest-cov = "^6.0.0"
ruff = "^0.8.4"
[[tool.poetry.source]]
name = "dfint"
url = "https://dfint.github.io/pypi-index/"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
run = "streamlit run Home.py"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["ALL"]
ignore = [
"D", # Ignore all documentation warnings. Probably not the best option in real projects.
"SIM115",
"N999", # Allow non-pep8 module names
]
fixable = ["ALL"]
[tool.ruff.lint.per-file-ignores]
"tests/*" = [
"S101", # Don't warn about using of asserts in tests
"ANN201", # Don't warn on missing return type annotation in tests
]