diff --git a/README.md b/README.md index 1adea57..97ffe56 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # dyn2py -Extract python nodes from Dynamo graphs +Extract python code from Dynamo graphs Use cases: diff --git a/pyproject.toml b/pyproject.toml index a5a5ed3..73d669c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,12 +4,17 @@ version = "0.1.0" description = "Extract python code from Dynamo graphs" readme = "README.md" requires-python = ">=3.7" -license = { file = "COPYING" } +keywords = ["dynamo", "dyn", "visual programming"] +license = { file = "LICENSE" } authors = [{ name = "infeeeee", email = "gyetpet@mailbox.org" }] maintainers = [{ name = "infeeeee", email = "gyetpet@mailbox.org" }] -classifiers = [] +classifiers = [ + "Development Status :: 3 - Alpha", + "Environment :: Console", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", +] dependencies = ["importlib_metadata", "pathvalidate", "simplejson"]