-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (48 loc) · 1.3 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
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
[tool.poetry]
name = "regexp-learner"
version = '1.0.2'
description = "Python3 module providing some algorithms to infer automata and regular expressions."
authors = [
"Marc-Olivier Buob <marc-olivier.buob@nokia-bell-labs.com>",
"Maxime Raynal <maxime.raynal@nokia.com>",
]
license = "BSD-3 license"
readme = "README.md"
packages = [{include = "regexp_learner", from = "src"}]
include = ["AUTHORS.md", "CONTRIBUTING.md", "HISTORY.md", "README.md"]
# https://docs.pytest.org/en/7.1.x/reference/customize.html
[tool.pytest.ini_options]
pythonpath = "src"
minversion = "7.2.1"
addopts = "--doctest-modules --showlocals --capture=no --exitfirst --failed-first"
testpaths = [
"tests"
]
[tool.poetry.dependencies]
python = ">=3.10, <4.0"
pybgl = ">=0.11.1"
numpy = ">=2.2.6"
ipython = ">= 8.10.0"
[tool.poetry.group.test]
optional = true
[tool.poetry.group.test.dependencies]
pytest = ">=7.2.1"
pytest-runner = "*"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pip = "*"
bump2version = "*"
flake8 = "*"
tox = "*"
coverage = "*"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
pydata-sphinx-theme = "*"
Sphinx = ">=6.0.0"
sphinx_copybutton = "*"
sphinx_mdinclude = "*"
[build-system]
requires = ["poetry-core>=1.2.0"]
build-backend = "poetry.core.masonry.api"