diff options
| author | Arun Isaac | 2026-07-12 02:07:47 +0100 |
|---|---|---|
| committer | Arun Isaac | 2026-07-27 23:30:30 +0100 |
| commit | 74391420fa9890d33e8d89a15c816e6378c7aaef (patch) | |
| tree | 763c16edbd68b615d53c40c8ece197a3877358da /pyproject.toml | |
| download | domagi-74391420fa9890d33e8d89a15c816e6378c7aaef.tar.gz domagi-74391420fa9890d33e8d89a15c816e6378c7aaef.tar.lz domagi-74391420fa9890d33e8d89a15c816e6378c7aaef.zip | |
Initial commit
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..a862509 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,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" |
