-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 1.08 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
42
[tool.poetry]
authors = ["Niko Ehrenfeuchter <nikolaus.ehrenfeuchter@unibas.ch>"]
description = "PowerShell Python Citrix Tricks."
documentation = "https://imcf.one/apidocs/psytricks/psytricks.html"
license = "GPL-3.0-or-later"
name = "psytricks"
readme = "README.md"
version = "0.0.0"
[tool.poetry.urls]
"Changelog" = "https://github.com/imcf/psytricks/blob/main/CHANGELOG.md"
"Organisation Homepage" = "https://imcf.one/"
"Twitter" = "https://twitter.com/imcf_basel"
[tool.poetry.dependencies]
click = "^8.1.3"
loguru = "^0.7.0"
python = "^3.9"
requests = "^2.30.0"
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
ipython = "^8.13.2"
pylint = "^2.16.2"
[tool.poetry.scripts]
psytricks = "psytricks.cli:run_cli"
[tool.poetry-dynamic-versioning]
enable = true
style = "semver"
vcs = "git"
[tool.poetry-dynamic-versioning.substitution]
folders = [
{path = "src"},
{path = "src/psytricks/__ps1__", files = ["*.ps1"], patterns = ['(^\$Version = ["])[^"]*(["])']},
]
[build-system]
build-backend = "poetry_dynamic_versioning.backend"
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]