-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpyproject.toml
41 lines (36 loc) · 1.42 KB
/
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
40
41
[tool.poetry]
name = "poetry-pyinstaller-plugin"
version = "0.0.0"
description = "Poetry plugin to build and/or bundle executable binaries with PyInstaller"
authors = ["Thomas Mahé <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/thmahe/poetry-pyinstaller-plugin"
keywords = ["poetry", "plugin", "pyinstaller", "binary"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Plugins",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Software Distribution",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Installation/Setup",
"Topic :: Utilities",
]
[tool.poetry.dependencies]
python = ">=3.8,<3.14"
[tool.poetry.group.dev.dependencies]
poetry = {version = "^2.0.1", python = ">=3.9,<3.14"}
[tool.poetry-dynamic-versioning]
enable = true
[tool.poetry.plugins."poetry.application.plugin"]
poetry-pyinstaller-plugin = "poetry_pyinstaller_plugin.plugin:PyInstallerPlugin"
[build-system]
requires = ["poetry-core>=1.8.0", "poetry-dynamic-versioning>=1.0.0,<2.0.0"]
build-backend = "poetry_dynamic_versioning.backend"