-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (28 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
30 lines (28 loc) · 1.06 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "entropy"
version = "0.0.0"
description ="entropy continuous integration demo"
dependencies = [
"numpy",
"pytest",
"pytest-cov"
]
# Optional upgrades beyond the default ruff rules
# [tool.ruff.lint]
# select = [
# "E", # pycodestyle: detect deviations from PEP8 rules
# "W", # pycodestyle warnings: detect deviations from PEP8 suggestions
# "F", # Pyflakes: detect code errors, potential bugs
# "B", # flake8-bugbear: detect antipatterns that can lead to bugs
# "A", # flake8-builtins: detect overloading python builtins
# "N", # pep8-naming: detect deviations from PEP naming conventions
# "I", # isort: better import organization
# "D", # pydocstyle: check docstrings
# "C4", # flake8-comprehensions: check for code simplifications with comprehensions
# "SIM", # flake8-simplify: check for code simplifications
# "UP", # pyupgrade: check for syntax improvments in new python versions
# "C90", # McCabe complexity
# ]