-
-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.12 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
49
50
51
52
53
[build-system]
requires = ["hatchling", "hatch-babel"]
build-backend = "hatchling.build"
[project]
name = "pytr"
version = "0.3.1"
description = "Use TradeRepublic in terminal"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "MIT" }
authors = [
{ name = "marzzzello", email = "[email protected]" }
]
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 = [
"certifi",
"coloredlogs",
"ecdsa",
"packaging",
"pathvalidate",
"pygments",
"requests_futures",
"shtab",
"websockets>=10.1,<14",
"babel",
]
[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",
]
[tool.ruff]
line-length = 120
[tool.ruff.lint]
extend-select = ["I"]