-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
40 lines (34 loc) · 969 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
[tool.poetry]
name = "exact_cover"
version = "0.6.2-alpha.0"
description = "Solve exact cover problems"
readme = "README.md"
authors = ["Moy Easwaran"]
maintainers = ["Jack Grahl <[email protected]>"]
homepage = "https://github.com/jwg4/exact_cover"
repository = "https://github.com/jwg4/exact_cover"
license = "GPL-2.0-only"
include = [
{path = "src/*.c", format = "sdist"},
{path = "src/*.h", format = "sdist"}
]
[tool.poetry.dependencies]
python = "^3.7.1"
numpy = "^1.20"
setuptools = "^51.1.2"
[tool.poetry.dev-dependencies]
hypothesis = "^5.41.3"
pytest = "^6.1.2"
flake8 = "^3.8.4"
black = "^21.4b2"
[tool.poetry.build]
script = "build.py"
[tool.poetry.scripts]
test = 'tools.run_tests:test'
doctest = 'tools.run_tests:run_doctest'
debug = 'tools.debug:run_debug'
[build-system]
requires = ["setuptools>=51.1.2,<52.0", "numpy>=1.19.4,<2.0", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
exclude = "polyomino_data"