pyproject.toml tweaks for publishing as a package

This commit is contained in:
Brian S. Stephan 2023-07-05 23:56:59 -05:00
parent 221f45557e
commit 6580990380
Signed by: bss
GPG Key ID: 3DE06D3180895FCB

View File

@ -1,9 +1,10 @@
[build-system] [build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"] requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project] [project]
name = "gp2040ce-binary-tools" name = "gp2040ce-binary-tools"
description = "Tools for working with GP2040-CE binary dumps." description = "Tools for working with GP2040-CE firmware and storage binaries."
readme = "README.md" readme = "README.md"
license = {text = "MIT"} license = {text = "MIT"}
authors = [ authors = [
@ -12,6 +13,18 @@ authors = [
requires-python = ">=3.9" requires-python = ">=3.9"
dependencies = ["grpcio-tools", "textual"] dependencies = ["grpcio-tools", "textual"]
dynamic = ["version"] dynamic = ["version"]
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Utilities",
]
[project.urls]
"Homepage" = "https://github.com/OpenStickCommunity/gp2040ce-binary-tools"
"Bug Tracker" = "https://github.com/OpenStickCommunity/gp2040ce-binary-tools/issues"
[project.optional-dependencies] [project.optional-dependencies]
dev = ["bandit", "decorator", "flake8", "flake8-blind-except", "flake8-builtins", "flake8-docstrings", dev = ["bandit", "decorator", "flake8", "flake8-blind-except", "flake8-builtins", "flake8-docstrings",