-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 924 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 924 Bytes
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
[project]
name = "tlparser"
version = "1.0.0"
description = "Temporal Logic Parser"
readme = "README.md"
authors = [{name = "null"}]
license = {text = "GPL-3.0-or-later"}
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: MIT License"
]
dependencies = [
"click",
"pandas",
"matplotlib",
"networkx",
"pyvis",
"seaborn",
"plotly",
"kaleido",
"D3Blocks==1.4.9",
"setuptools",
"pyModelChecking==1.3.3",
"lark-parser==0.12.0",
"openpyxl==3.1.5"
]
[project.urls]
Homepage = "https://github.com/RomanBoegli/tlparser"
Changelog = "https://github.com/RomanBoegli/tlparser/releases"
Issues = "https://github.com/RomanBoegli/tlparser/issues"
CI = "https://github.com/RomanBoegli/tlparser/actions"
[project.scripts]
tlparser = "tlparser.cli:cli"
[project.optional-dependencies]
test = ["pytest"]
[tool.setuptools.packages]
find = { include = ["tlparser"] }