-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.06 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
51
52
53
[tool.pytest.ini_options]
markers = [
"slow: marks tests as being slow",
"integration: tags the integration tests",
]
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.poetry]
name = "evola"
version = "0.0.11"
description = "Evolutionary algorithms"
authors = ["David Freire <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/DavidFreire-FEUP/evolutionary-algorithms"
packages = [
{ include = "evola", from = "src" },
]
[tool.poetry.dependencies]
python = ">3.8"
tqdm = {version = "^4.66.1", optional = true}
[tool.poetry.group.dev.dependencies]
bandit = "1.7.4"
isort = "^5.12.0"
flake8 = "4.0.1"
black = "22.3.0"
pytest = "^7.1.2"
pytest-randomly = "^3.12.0"
pre-commit = "2.19.0"
coverage = "6.4.1"
ipython = "^8.4.0"
safety = "^2.2.0"
nox = "^2023.4.22"
flake8-bugbear = "22.4.25"
twine = "^4.0.1"
matplotlib = "^3.6.0"
tqdm = "^4.64.1"
mypy = "^1.5.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"