-
-
Notifications
You must be signed in to change notification settings - Fork 78
/
pyproject.toml
45 lines (41 loc) · 1.09 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
[build-system]
requires = ["setuptools>=42", "wheel", "babel"]
build-backend = "setuptools.build_meta"
[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://gitlab.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",
"babel",
]
[project.scripts]
pytr = "pytr.main:main"
[tool.setuptools]
include-package-data = true
packages = ["pytr"]
[tool.setuptools.package-data]
pytr = ["pytr/locale/*/*/*.mo", "pytr/locale/*/*/*.po"]