-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 1.07 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
[tool.poetry]
name = "richy"
version = "0.1.0"
description = "Financing and Trading Supporter"
authors = ["dominicparga <[email protected]>"]
maintainers = ["dominicparga <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
packages = [{ include = "richy" }]
# include = [{ path = "dependencies", format = ["sdist", "wheel"] }]
homepage = "https://github.com/dominicparga/richy"
repository = "https://github.com/dominicparga/richy"
documentation = "https://github.com/dominicparga/richy"
[tool.poetry.urls]
"Issues" = "https://github.com/dominicparga/richy/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# binaries and extras
[tool.poetry.scripts]
richy = "richy.bin.cli:main"
[tool.poetry.extras]
# -
[tool.poetry.dependencies]
cryptography = "*"
errorhandling = "~1"
fastapi = "~0.115"
python = "^3.10"
requests = "~2"
subprocessmagic = "~1"
uvicorn = "~0.32"
# extras' dependencies, hence optional by default
# -
[tool.poetry.group.dev.dependencies]
# linting and formatting
ruff = "*"
# python testing
pytest = "*"