forked from wingtk/gvsbuild
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (32 loc) · 977 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[tool.poetry]
name = "gvsbuild"
version = "2022.1.0"
description = "GTK stack for Windows"
authors = ["Ignacio Casal Quinteiro <[email protected]>", "Dan Yeaw <[email protected]>"]
license = "GPL-2.0-only"
readme = "README.md"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Topic :: Software Development :: Build Tools",
"Environment :: X11 Applications :: GTK",
"Operating System :: Microsoft :: Windows",
]
[tool.poetry.dependencies]
python = "^3.8"
lastversion = { version = "^2.4.2", optional = true }
packaging = { version = "^21.3", optional = true }
[tool.poetry.dev-dependencies]
pre-commit = "^2.18.1"
[tool.poetry.extras]
outdated = ["lastversion", "packaging"]
[tool.poetry.scripts]
gvsbuild = 'gvsbuild.main:build'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.mypy.overrides]]
module = "lastversion"
ignore_missing_imports = true
[tool.isort]
profile = "black"
skip = ".venv"