You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

pyproject.toml 767 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. [build-system]
  2. requires = ["setuptools"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "abl"
  6. version = "0.1.3"
  7. authors = [
  8. { name="LAMDA 2023" },
  9. ]
  10. description = "ABL-Package"
  11. readme = "README.md"
  12. requires-python = ">=3.6"
  13. license = {file = "LICENSE"}
  14. classifiers = [
  15. "Programming Language :: Python :: 3",
  16. "License :: OSI Approved :: MIT License",
  17. "Operating System :: OS Independent",
  18. ]
  19. dependencies = [
  20. "numpy",
  21. "pyswip==0.2.9",
  22. "torch",
  23. "torchvision",
  24. "zoopt",
  25. "termcolor"
  26. ]
  27. [project.urls]
  28. Homepage = "https://github.com/AbductiveLearning/ABL-Package"
  29. Issues = "https://github.com/AbductiveLearning/ABL-Package/issues"
  30. [tool.pytest.ini_options]
  31. minversion = "6.0"
  32. addopts = "-ra -q"
  33. testpaths = [
  34. "tests",
  35. ]

An efficient Python toolkit for Abductive Learning (ABL), a novel paradigm that integrates machine learning and logical reasoning in a unified framework.