feat(libplugin): added libplugin as a dependency and added fourdst-cli

This commit is contained in:
2025-08-04 13:45:03 -04:00
parent 9ba35ccc30
commit 2f756433b2
9 changed files with 234 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ build-backend = "mesonpy"
[project]
name = "fourdst" # Choose your Python package name
version = "0.5.0" # Your project's version
version = "0.6.0" # Your project's version
description = "Python interface to the utility fourdst modules from the 4D-STAR project"
readme = "readme.md"
license = { file = "LICENSE.txt" } # Reference your license file [cite: 2]
@@ -19,3 +19,13 @@ authors = [
maintainers = [
{name = "Emily M. Boudreaux", email = "emily@boudreauxmail.com"}
]
dependencies = [
"typer[all]",
"libclang",
"questionary",
]
[project.scripts]
fourdst-cli = "fourdst.cli.main:app"