-
Notifications
You must be signed in to change notification settings - Fork 139
/
Copy pathpyproject.toml
38 lines (34 loc) · 1008 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
[project]
name = "formal-lang-course"
version = "0.1.0"
description = "Course on formal language constrained path querying"
authors = [
{ name = "Semyon Grigorev", email = "rsdpisuy@gmail.com" },
{ name = "Efim Kubishkin", email = "efimkub@mail.ru" },
{ name = "Nikolai Ponomarev", email = "wowasterdev@gmail.com" },
]
dependencies = [
"antlr4-python3-runtime>=4.13.1",
"cfpq-data>=4.0.3",
"networkx>=3.2.1",
"pre-commit>=3.8.0",
"pydot>=3.0.1",
"pytest>=8.3.2",
"scipy>=1.14.1",
"grammarinator @ git+https://github.com/renatahodovan/grammarinator.git@f3ffa71",
"pyformlang>=1.0.7",
]
readme = "README.md"
requires-python = ">= 3.10"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.rye]
managed = true
dev-dependencies = []
universal = true # Solve dependencies for all platforms
virtual = true
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["src/formal_lang_course"]