-
-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (55 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
62 lines (55 loc) · 1.32 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = ["hatchling", "hatch-babel"]
build-backend = "hatchling.build"
[project]
name = "pytr"
version = "0.4.10"
description = "Use TradeRepublic in terminal"
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "marzzzello", email = "853485-marzzzello@users.noreply.gitlab.com" }
]
urls = { "Homepage" = "https://github.com/pytr-org/pytr" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
]
dependencies = [
"babel",
"certifi",
"coloredlogs",
"cryptography",
"curl_cffi",
"packaging",
"pathvalidate",
"playwright",
"pygments",
"requests_futures",
"shtab",
"websockets>=14",
]
[project.scripts]
pytr = "pytr.main:main"
[tool.hatch.build.hooks.babel]
locale_dir = "pytr/locale"
[dependency-groups]
dev = [
"ruff>=0.9.4",
"pytest>=8.3.4",
"mypy>=1.15.0",
"types-babel>=2.11.0.15",
"types-requests>=2.32.0.20241016",
"types-pygments>=2.19.0.20250107",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["I"]
[tool.mypy]
python_version = "3.10"