-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
113 lines (102 loc) · 3.21 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "bcra-connector"
dynamic = ["version"]
description = "A Python connector for the BCRA (Banco Central de la República Argentina) APIs"
readme = "README.md"
authors = [
{ name = "Pablo Peitsch", email = "pablo.peitsch@gmail.com" },
]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Framework :: Pytest",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Natural Language :: English",
"Natural Language :: Spanish",
"Environment :: Console",
"Typing :: Typed",
]
keywords = ["bcra", "api", "connector", "argentina", "banco-central", "financial", "currency", "exchange-rates"]
dependencies = [
"requests>=2.32.0,<2.33.0",
"urllib3>=2.2.1,<3.0.0",
"numpy~=1.26.4,<1.27.0",
"scipy~=1.13.1,<1.15.0",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = [
"twine>=5.1.1",
"matplotlib>=3.7.3,<3.8.0",
"setuptools>=70.0.0,<71.0.0",
"pytest>=6.0.0,<8.0.0",
"pytest-cov>=4.1.0",
"sphinx>=4.0.0,<6.0.0",
"black>=23.0.0",
"isort>=5.0.0",
"mypy>=1.0.0",
"types-requests>=2.31.0",
"types-urllib3>=1.26.0",
"numpy>=1.26.4",
"scipy>=1.13.1",
"pytest-timeout>=2.1.0",
]
[project.urls]
Homepage = "https://github.com/PPeitsch/bcra-connector"
Documentation = "https://bcra-connector.readthedocs.io/"
Repository = "https://github.com/PPeitsch/bcra-connector.git"
"Bug Tracker" = "https://github.com/PPeitsch/bcra-connector/issues"
Changelog = "https://github.com/PPeitsch/bcra-connector/blob/main/CHANGELOG.md"
[tool.hatch.version]
path = "src/bcra_connector/__about__.py"
[tool.hatch.build.hooks.version]
path = "src/bcra_connector/_version.py"
[tool.hatch.build.targets.wheel]
packages = ["src/bcra_connector"]
[tool.black]
line-length = 88
target-version = ["py39"]
[tool.isort]
profile = "black"
line_length = 88
multi_line_output = 3
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
[[tool.mypy.overrides]]
module = ["scipy.*"]
ignore_missing_imports = true
[tool.pytest.ini_options]
addopts = "--cov-report=term --cov-report=xml"
testpaths = ["tests"]
python_files = ["*_tests.py", "test_*.py"]
markers = [
"integration: mark a test as an integration test",
]