-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
35 lines (32 loc) Β· 1002 Bytes
/
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
[tool.poetry]
name = "tessa"
version = "0.8.1"
description = "Find financial assets and get their price history without worrying about different APIs or rate limiting."
authors = ["ymyke"]
license = "MIT"
repository = "https://github.com/ymyke/tessa"
homepage = "https://github.com/ymyke/tessa"
documentation = "https://ymyke.github.io/tessa/tessa.html"
readme = "README.md"
keywords = ["python", "finance", "investing", "financial-analysis", "investment-analysis", "financial-data", "coingecko", "pycoingecko", "yahoo", "yahoo-finance", "yfinance"]
[tool.poetry.dependencies]
# General:
python = ">=3.9"
pendulum = ">=2.1"
# price- and search-specific:
pycoingecko = ">=2.2"
yfinance = "^0.2.3"
beautifulsoup4 = "^4.11.1"
# symbol-specific:
seaborn = ">=0.11"
matplotlib = ">=3.5"
PyYAML = ">=6"
[tool.poetry.dev-dependencies]
pytest = "*"
pytest-mock = "*"
pytest-random-order = "*"
black = "*"
pdoc = "*"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"