Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions MANIFEST.in

This file was deleted.

43 changes: 43 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
[project]
name = "gdtoolkit"
version = "4.3.4"
description = "Independent set of tools for working with GDScript - parser, linter and formatter"
keywords = ["GODOT", "GDSCRIPT", "PARSER", "LINTER", "FORMATTER"]
readme = "README.md"
authors = [{ name = "Pawel Lampe", email = "pawel.lampe@gmail.com" }]
license = { text = "MIT" }
requires-python = ">=3.7"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"lark[regex]==1.2.2",
"docopt-ng==0.9.0",
"pyyaml>=5.1",
"radon==6.0.1",
]

[project.scripts]
gdparse = "gdtoolkit.parser.__main__:main"
gdlint = "gdtoolkit.linter.__main__:main"
gdformat = "gdtoolkit.formatter.__main__:main"
gd2py = "gdtoolkit.gd2py.__main__:main"
gdradon = "gdtoolkit.gdradon.__main__:main"

[project.urls]
Homepage = "https://github.com/Scony/godot-gdscript-toolkit"

[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
3 changes: 0 additions & 3 deletions setup.cfg

This file was deleted.

52 changes: 0 additions & 52 deletions setup.py

This file was deleted.

4 changes: 1 addition & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,14 @@ deps =
flake8-comprehensions
flake8-bugbear
commands =
pylint -rn -j0 setup.py gdtoolkit/ tests/ --rcfile=pylintrc
pylint -rn -j0 gdtoolkit/ tests/ --rcfile=pylintrc
flake8 gdtoolkit/ --max-complexity 20 --config=tox.ini

[testenv:format]
deps =
black == 22.3.0
commands =
black --check \
setup.py \
gdtoolkit/ \
tests/common.py \
tests/conftest.py \
Expand All @@ -41,7 +40,6 @@ setenv =
MYPYPATH = stubs
deps =
mypy == 0.971
types-pkg_resources == 0.1.3
types-PyYAML == 6.0.12.12
types-docopt
commands =
Expand Down