turn this thing into a HTTP endpoint
This commit is contained in:
parent
ceb2567ef9
commit
8359d6e521
33 changed files with 1321 additions and 514 deletions
|
|
@ -1,28 +1,24 @@
|
|||
[tool.poetry]
|
||||
name = "metric-temporal-logic"
|
||||
readme="README.md"
|
||||
version = "0.4.1"
|
||||
description = "A library for manipulating and evaluating metric temporal logic."
|
||||
repository = "https://github.com/mvcisback/py-metric-temporal-logic"
|
||||
authors = ["Marcell Vazquez-Chanlatte <mvc@linux.com>"]
|
||||
license = "MIT"
|
||||
packages = [
|
||||
{ include = "mtl" },
|
||||
[project]
|
||||
name = "mtl"
|
||||
version = "0.1.0"
|
||||
description = "Add your description here"
|
||||
requires-python = ">=3.7"
|
||||
dependencies = [
|
||||
"attrs>=22, <23",
|
||||
"lenses >=0.5.0, <0.6.0",
|
||||
"discrete-signals >=0.8, <0.9",
|
||||
"parsimonious >=0.10.0, <0.11.0",
|
||||
"flask>=2.2.5",
|
||||
"flask-cors>=5.0.0",
|
||||
]
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = "^3.7"
|
||||
attrs = "^22"
|
||||
lenses = "^0.5.0"
|
||||
discrete-signals = "^0.8"
|
||||
parsimonious = "^0.9.0"
|
||||
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
hypothesis_cfg = {git = "https://github.com/mvcisback/hypothesis-cfg.git"}
|
||||
hypothesis = "^6.47.4"
|
||||
pytest = "^7.1.3"
|
||||
[project.scripts]
|
||||
run_server = "mtl.run_server:run_server"
|
||||
|
||||
[build-system]
|
||||
requires = ["poetry>=0.12"]
|
||||
build-backend = "poetry.masonry.api"
|
||||
requires = ["uv_build>=0.8.0,<0.9.0", "setuptools", "wheel"]
|
||||
build-backend = "uv_build, setuptools.build_meta"
|
||||
|
||||
# [tool.uv]
|
||||
# extra-build-dependencies = { "parsimonious-0.9.0" = ["setuptools", "wheel"] }
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue