-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (47 loc) · 1.46 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
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ablkit"
version = "0.2.2"
authors = [
{ name="LAMDA 2024", email = "abductivelearning@gmail.com" },
]
description = "Abductive Learning (ABL) toolkit"
readme = "README.md"
requires-python = ">=3.7.0"
license = {text = "MIT LICENSE"}
keywords = ["machine-learning", "framework", "abductive-learning", "neuro-symbolic"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"numpy>=1.15.0",
"pyswip==0.2.9",
"torch>=1.11.0",
"torchvision>=0.12.0",
"zoopt>=0.3.0",
"termcolor>=2.3.0"
]
[project.urls]
Homepage = "https://github.com/AbductiveLearning/ABLkit"
Issues = "https://github.com/AbductiveLearning/ABLkit/issues"
[project.optional-dependencies]
test = [
"pytest-cov",
"black==22.10.0",
]