|
- [build-system]
- requires = ["setuptools"]
- build-backend = "setuptools.build_meta"
-
- [project]
- name = "abl"
- version = "0.1.5"
- authors = [
- { name="LAMDA 2024" },
- ]
- description = "Abductive learning package project"
- readme = "README.md"
- requires-python = ">=3.6.0"
- license = {text = "MIT LICENSE"}
- classifiers = [
- "Development Status :: 3 - Alpha",
- "Intended Audience :: Science/Research",
- "Intended Audience :: Developers",
- "Programming Language :: Python",
- "Topic :: Software Development",
- "Topic :: Scientific/Engineering",
- "Operating System :: POSIX :: Linux",
- "Programming Language :: Python :: 3.7",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
- ]
- 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/ABL-Package"
- Issues = "https://github.com/AbductiveLearning/ABL-Package/issues"
-
- [project.optional-dependencies]
- test = [
- "pytest-cov",
- "black==22.10.0",
- ]
|