-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 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
41
42
43
44
45
46
47
48
49
50
[project]
name = "circuitdb"
version = "2.0.0"
description = "Data set of optimal circuits for Boolean functions that have low arity."
license = {text = "MIT"}
authors = [
{name = "Andrei Lapets"},
{email = "[email protected]"}
]
readme = "README.rst"
requires-python = ">=3.7"
dependencies = [
"bitlist~=1.0",
"logical~=2.0",
"circuit~=2.0"
]
[project.urls]
Repository = "https://github.com/reity/circuitdb"
Documentation = "https://circuitdb.readthedocs.io"
[project.optional-dependencies]
docs = [
"toml~=0.10.2",
"sphinx~=4.2.0",
"sphinx-rtd-theme~=1.0.0"
]
test = [
"pytest~=7.0",
"pytest-cov~=3.0"
]
lint = [
"pylint~=2.14.0"
]
coveralls = [
"coveralls~=3.3.1"
]
publish = [
"build~=0.8",
"twine~=4.0"
]
[build-system]
requires = [
"setuptools~=62.0"
]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
addopts = "--doctest-modules --ignore=docs --cov=circuitdb --cov-report term-missing"