-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (45 loc) · 994 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[project]
name = "wolves_in_silico"
version = "0.0.1"
dependencies = [
"numpy",
"matplotlib",
]
requires-python = ">3.10"
[build-system]
requires = ["setuptools", "setuptools_scm"]
build-backend = "setuptools.build_meta"
include-package-data = true
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.flake8.plugins]
flake8-class-attributes-order = ["+*"]
flake8-comprehensions = ["+*"]
flake8-print = ["+*"]
pep8-naming = ["+*"]
[tool.flake8]
format = "grouped"
[tool.tox]
legacy_tox_ini = """
[tox]
isolated_build = True
envlist = py310
[flake8]
exclude = ["venv", "wolves_in_silico.egg-info", "build/*", ".git/*", ".tox"]
format = "grouped"
[testenv]
deps =
flake8
flake8-class-attributes-order
flake8-comprehensions
flake8-print
pytest
pytest-cov
commands =
flake8 --max-line-length 120
pytest --disable-warnings --cov-report term
[run]
omit = .tox/*,venv/*,tests/*,htmlcov*,analyses*
"""