-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (57 loc) · 1.6 KB
/
Copy pathpyproject.toml
File metadata and controls
64 lines (57 loc) · 1.6 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[project]
name = "graphreveal"
description = "Small graphs database and search system"
readme = "README.md"
authors = [
{ name = "Michał Dobranowski", email = "mdbrnowski@gmail.com" }
]
license = "MIT"
requires-python = ">=3.10"
dependencies = [
"antlr4-python3-runtime>=4.13.2",
"igraph>=1.0.0",
"networkx>=3.4.2",
"platformdirs>=4.10.0",
"rich>=15.0.0",
"typer>=0.26.7",
]
dynamic = ["version"]
keywords = ["graphs", "graph-theory", "database"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Database",
"Topic :: Scientific/Engineering :: Mathematics"
]
[project.urls]
Changelog = "https://github.com/mdbrnowski/GraphReveal/releases"
Source = "https://github.com/mdbrnowski/GraphReveal"
[project.scripts]
graphreveal = "graphreveal.cli:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"pytest>=9.1.1",
]
[tool.ruff]
exclude = ["generated"]
[tool.hatch.version]
path = "src/graphreveal/__init__.py"
[tool.coverage.run]
branch = true
omit = [
"src/graphreveal/translator/generated/*",
]