-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
38 lines (32 loc) · 1 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
[build-system]
requires = ["setuptools >= 65.6.3", "numpy >= 1.23.5"]
build-backend = "setuptools.build_meta"
[project]
name = "pasp-plp"
dynamic = ["version", "dependencies"]
authors = [
{ name = "Renato Lui Geh", email = "[email protected]" },
]
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
description = "Probabilistic Answer Set Programming"
[project.optional-dependencies]
torch = ["torch >= 1.13.1"]
[tool.setuptools.dynamic]
version = {attr = "pasp.__version__"}
dependencies = {file = ["requirements.txt"]}
[project.urls]
Repository = "https://github.com/RenatoGeh/pasp"
Issues = "https://github.com/RenatoGeh/pasp/issues"
[project.scripts]
pasp = "pasp.app:main"