We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a71de4e commit 2282464Copy full SHA for 2282464
problog/version.py
@@ -1 +1 @@
1
-version = '2.2.5'
+version = '2.2.6'
pyproject.toml
@@ -0,0 +1,3 @@
+[build-system]
2
+requires = ["setuptools >= 61.0"]
3
+build-backend = "setuptools.build_meta"
setup.py
@@ -75,14 +75,17 @@ def run(self):
75
"License :: OSI Approved :: Apache Software License",
76
"Intended Audience :: Science/Research",
77
"Programming Language :: Python :: 3",
78
- "Programming Language :: Python :: 3.6",
79
- "Programming Language :: Python :: 3.7",
80
"Programming Language :: Python :: 3.8",
+ "Programming Language :: Python :: 3.9",
+ "Programming Language :: Python :: 3.10",
81
+ "Programming Language :: Python :: 3.11",
82
+ "Programming Language :: Python :: 3.12",
83
"Programming Language :: Prolog",
84
"Topic :: Scientific/Engineering :: Artificial Intelligence",
85
],
86
keywords="prolog probabilistic logic",
87
packages=find_packages(),
88
+ install_requires = ["setuptools"],
89
extras_require={"sdd": ["pysdd>=0.2.6"]},
90
entry_points={"console_scripts": ["problog=problog.tasks:main"]},
91
package_data=package_data,
0 commit comments