mirror of
https://github.com/infeeeee/dyn2py
synced 2025-12-17 22:26:19 +01:00
33 lines
790 B
TOML
33 lines
790 B
TOML
[project]
|
|
name = "dyn2py"
|
|
version = "0.1.0"
|
|
description = "Extract python code from Dynamo graphs"
|
|
readme = "README.md"
|
|
requires-python = ">=3.7"
|
|
license = { file = "COPYING" }
|
|
|
|
|
|
authors = [{ name = "infeeeee", email = "gyetpet@mailbox.org" }]
|
|
maintainers = [{ name = "infeeeee", email = "gyetpet@mailbox.org" }]
|
|
classifiers = []
|
|
|
|
dependencies = ["importlib_metadata", "pathvalidate", "simplejson"]
|
|
|
|
[project.optional-dependencies]
|
|
build = ["pyinstaller"]
|
|
doc = ["pdoc"]
|
|
|
|
[project.urls]
|
|
homepage = "https://github.com/infeeeee/dyn2py"
|
|
documentation = "https://github.com/infeeeee/dyn2py"
|
|
repository = "https://github.com/infeeeee/dyn2py"
|
|
changelog = "https://github.com/infeeeee/dyn2py/releases"
|
|
|
|
|
|
[project.scripts]
|
|
dyn2py = "dyn2py:run"
|
|
|
|
|
|
[build-system]
|
|
requires = ["setuptools", "wheel"]
|