Skip to content

Commit c2c0c2a

Browse files
markducksstefanogermano
authored andcommitted
Added pyproject.toml
1 parent aa99444 commit c2c0c2a

File tree

2 files changed

+28
-1
lines changed

2 files changed

+28
-1
lines changed

pyproject.toml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[project]
2+
name = "python-ese"
3+
version = "1.0.0"
4+
description = "PythonESE is a Python web app to execute logic programs with different solvers, using the EmbASP framework."
5+
readme = "README.md"
6+
license = {file = "LICENSE"}
7+
authors = [
8+
{name = "Stefano Germano", email = "[email protected]"}
9+
]
10+
classifiers = [
11+
"Programming Language :: Python :: 3",
12+
"License :: OSI Approved :: MIT License",
13+
"Operating System :: OS Independent"
14+
]
15+
dependencies = [
16+
"antlr4-python3-runtime==4.7",
17+
"embasp-python",
18+
"tornado"
19+
]
20+
21+
[project.urls]
22+
Homepage = "https://github.com/DeMaCS-UNICAL/PythonESE"
23+
Bug Tracker = "https://github.com/DeMaCS-UNICAL/PythonESE/issues"
24+
Source Code = "https://github.com/DeMaCS-UNICAL/PythonESE"
25+
26+
[project.scripts]
27+
ese_run = 'embasp_server_executor/ese_main.py'

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
embasp-python
22
tornado
3-
antlr4-python3-runtime
3+
antlr4-python3-runtime==4.7

0 commit comments

Comments
 (0)