-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (37 loc) · 1.09 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "theorydd"
version = "0.0.5"
authors = [
{ name="Massimo Michelutti", email="[email protected]" },
]
description = "Theory Consistent decision diagrams in Python through interfaces with the mathsat SMT-solver and with Cython implementations of Decision Diagrams"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"Cython==3.0.8",
"pydot==1.4.2",
"PySDD==0.2.11",
"PySMT==0.9.6.dev53",
"dd==0.5.7",
"allsat_cnf @ git+https://github.com/masinag/allsat-cnf@main",
"GitPython>=3.1.44",
"python-dotenv==1.0.1"
]
[project.urls]
Homepage = "https://github.com/pypa/sampleproject"
Issues = "https://github.com/pypa/sampleproject/issues"
[project.scripts]
theorydd_install = "theorydd:install_bin.run_setup"
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]