-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.3 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
43
44
45
46
47
48
[tool.poetry]
name = "rttt"
version = "1.2.0"
description = "HARDWARIO Real Time Transfer Terminal Console"
authors = ["Karel Blavka <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/hardwario/py-rttt"
repository = "https://github.com/hardwario/py-rttt"
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Utilities",
"Environment :: Console"
]
packages = [
{ include = "rttt" },
]
[tool.poetry.scripts]
rttt = "rttt.cli:main"
[tool.poetry.dependencies]
python = ">=3.8, <4"
click = "^8.1.8"
loguru = "^0.7.3"
prompt-toolkit = "^3.0.50"
pyperclip = "^1.9.0"
pylink-square = "^1.5.0"
psutil = "^7.0.0"
pyyaml = "^6.0.2"
[poetry.group.dev.dependencies]
pycodestyle = "^2.12.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"