-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 1.01 KB
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
[build-system]
requires = [
"setuptools >= 77.0.3",
"setuptools-scm"
]
build-backend = "setuptools.build_meta"
[project]
name = "PythonESE"
description = "PythonESE is a Python web app to execute logic programs with different solvers, using the EmbASP framework."
readme = "README.md"
license = "MIT"
license-files = ["LICEN[CS]E*"]
authors = [
{name = "Stefano Germano", email = "loide@mat.unical.it"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent"
]
dependencies = [
"embasp-python>=8",
"tornado>=6.5.5"
]
keywords = ["logic programming", "ASP", "Datalog"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/DeMaCS-UNICAL/PythonESE"
Repository = "https://github.com/DeMaCS-UNICAL/PythonESE"
Issues = "https://github.com/DeMaCS-UNICAL/PythonESE/issues"
[tool.setuptools]
packages = ["embasp_server_executor"]
[project.scripts]
ese-run = 'embasp_server_executor.ese_main:main'
[tool.setuptools_scm]