|
- [build-system]
- requires = ["setuptools"]
- build-backend = "setuptools.build_meta"
-
- [project]
- name = "abl"
- version = "0.1.4"
- authors = [
- { name="LAMDA 2023" },
- ]
- 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",
- "pyswip==0.2.9",
- "torch",
- "torchvision",
- "zoopt",
- "termcolor"
- ]
-
- [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",
- ]
|