-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
34 lines (30 loc) · 1022 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
[tool.poetry]
name = "bcrpy"
version = "3.2.1"
description = "An API client for the extraction, query, and analysis of the BCRPData database from the Central Reserve Bank of Peru (BCRP)."
authors = ["andrewrgarcia <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.28.2"
numpy = "^1.24.4" # Adjust this based on your Python version.
pandas = "^2.0" # Ensures compatibility with `numpy`.
termcolor = "^2.4.0"
tqdm = "^4.65.0"
tabulate = "^0.9.0"
colorama = "^0.4.6"
pathos = "^0.3.1"
bottleneck = "^1.3.6"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
# Project URLs for PyPI
[tool.poetry.urls]
Homepage = "https://bcrpy.vercel.app/"
Repository = "https://github.com/andrewrgarcia/bcrpy"
Documentation = "https://bcrpy.readthedocs.io"
Changelog = "https://github.com/andrewrgarcia/bcrpy/releases"
Issues = "https://github.com/andrewrgarcia/bcrpy/issues"