about summary refs log tree commit diff
path: root/pyproject.toml
blob: a862509004c9f22f9250c4136e5bc3d09d5f44d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[build-system]
requires = ["meson-python"]
build-backend = "mesonpy"

[project]
name = "domagi"
version = "0.1.0"
authors = [
  { name="Arun Isaac", email="arunisaac@systemreboot.net" }
]
description = "DuckDB Optimized Dynamic Graph Implementation"
readme = "README.md"
classifiers = [
  "Programming Language :: Python :: 3",
  "Operating System :: OS Independent"
]
license = {file = "COPYING"}
dependencies = [
  "click",
  "duckdb"
]

[project.scripts]
domagi = "domagi.domagi:main"