Skip to content

Commit cb70c06

Browse files
committed
pkg: install everyghing as normal dependency
1 parent b5a2c6b commit cb70c06

File tree

1 file changed

+12
-5
lines changed

1 file changed

+12
-5
lines changed

pyproject.toml

+12-5
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,22 @@ homepage = "https://github.com/JCPedroza/algorithms-and-data-structures-py"
99
repository = "https://github.com/JCPedroza/algorithms-and-data-structures-py"
1010

1111
[tool.poetry.dependencies]
12+
# core
1213
python = "^3.10"
13-
pyclean = "^3.0.0"
1414

15-
[tool.poetry.dev-dependencies]
16-
black = "^24.4.0"
17-
flake8 = "^7.0.0"
15+
# static type check
1816
mypy = "^1.9"
1917
pyright = "^1.1.359"
20-
pytest = "^8.1.1"
18+
19+
# lint & style
20+
black = "^24.4.0"
21+
flake8 = "^7.0.0"
22+
23+
# unit test
24+
pytest = "^8.1.1" # unit test
25+
26+
# remove bitcode
27+
pyclean = "^3.0.0"
2128

2229
[build-system]
2330
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)