Skip to content

Commit

Permalink
Reformat pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
danyeaw committed Oct 5, 2024
1 parent 2e0bd14 commit c270e73
Showing 1 changed file with 22 additions and 15 deletions.
37 changes: 22 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,35 +1,46 @@
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"

[project]
name = "gvsbuild"
version = "2024.10.0"
description = "GTK stack for Windows"
authors = [
{ name = "Ignacio Casal Quinteiro", email = "qignacio@amazon.com" },
{ name = "Dan Yeaw", email = "dan@yeaw.me" }
]
license = "GPL-2.0-only"
readme = "README.md"
requires-python = "<4.0,>=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Build Tools",
"Environment :: X11 Applications :: GTK",
"Operating System :: Microsoft :: Windows",
"Topic :: Software Development :: Build Tools",
]
dependencies = [
"build >=0.9,<1.3",
"typer >=0.6.1,<0.13.0",
"setuptools >=69.2,<75.0; python_version >= \"3.12\"",
]
requires-python = ">=3.9,<4.0"
dynamic = []

[project.license]
file = "COPYING"

[[project.authors]]
name = "Ignacio Casal Quinteiro"
email = "qignacio@amazon.com"

[[project.authors]]
name = "Dan Yeaw"
email = "dan@yeaw.me"

[project.scripts]
gvsbuild = "gvsbuild.main:run"

[project.optional-dependencies]
outdated = [
"lastversion >=2.4.2,<4.0.0",
"packaging >=21.3,<25.0",
]

[project.scripts]
gvsbuild = 'gvsbuild.main:run'

[[tool.mypy.overrides]]
module = "lastversion"
ignore_missing_imports = true
Expand Down Expand Up @@ -71,15 +82,11 @@ extend-select = ["I"]
max-complexity = 20

[tool.ruff.lint.flake8-bugbear]
extend-immutable-calls = ["typer.Argument", "typer.Option"]
extend-immutable-calls = [ "typer.Argument", "typer.Option",]

[tool.uv]
dev-dependencies = [
"pre-commit >=3.0.1,<4.0.0",
"pytest >=7.1.3,<9.0.0",
"tox >=4.1.2,<5.0.0",
]

[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"

0 comments on commit c270e73

Please sign in to comment.