-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
41 lines (37 loc) · 1003 Bytes
/
pyproject.toml
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
41
[tool.poetry]
name = "amr-logic-converter"
version = "0.11.3"
description = "Convert Abstract Meaning Representation (AMR) into first-order logic"
license = "MIT"
readme = "README.md"
authors = ["David Chanin <[email protected]>"]
keywords = [
"amr",
"logic",
"first-order-logic",
"nlp",
"abstract-meaning-representation",
]
repository = "https://github.com/chanind/amr-logic-converter"
homepage = "https://github.com/chanind/amr-logic-converter"
[tool.poetry.dependencies]
python = ">=3.10, <4.0"
Penman = "^1.2.2"
typing-extensions = ">=3.7.4"
[tool.poetry.dev-dependencies]
pytest = "^7.1.3"
black = "^22.10.0"
flake8 = "^5.0.4"
mypy = "^0.982"
syrupy = "^3.0.2"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variables = [
"amr_logic_converter/__init__.py:__version__",
"pyproject.toml:version",
]
branch = "main"
build_command = "pip install poetry && poetry build"