-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
57 lines (46 loc) · 1.69 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
[tool.poetry]
name = "currency-quote"
version = "4.0.2"
description = "Complete solution for extracting currency pair quotes data. With comprehensive testing, parameter validation, flexible configuration management, Hexagonal Architecture, CI/CD pipelines, code quality tools, and detailed documentation."
authors = ["IvanildoBarauna <[email protected]>"]
readme = "README.md"
license = "MIT"
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
]
[tool.poetry.urls]
Homepage = "https://pypi.org/project/currency-quote-wrapper"
ArchDesign = "https://github.com/IvanildoBarauna/currency-quote-wrapper/blob/main/hexagonal_design_arch.png"
Repository = "https://github.com/IvanildoBarauna/currency-quote-wrapper"
README = "https://github.com/IvanildoBarauna/currency-quote-wrapper/blob/main/README.md"
Issues = "https://github.com/IvanildoBarauna/currency-quote-wrapper/issues"
[tool.setuptools.packages.find]
where = ["src/"]
include = ["currency_quote*"]
[tool.poetry.dependencies]
python = "^3.9"
api-to-dataframe = "^1.3.12"
pytest = "^8.3.4"
[tool.poetry.group.dev.dependencies]
coverage = "^7.5.4"
pytest = "^8.2.2"
poetry-dynamic-versioning = "^1.3.0"
black = "^24.4.2"
pylint = "^3.2.5"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry-dynamic-versioning]
enable = true
versioning = "semantic"
[tool.black]
[tool.pylint.'MESSAGES CONTROL']
disable = [
"C0114", # missing-module-docstring
"C0116", # missing-function-docstring
"R0903", # too-few-public-methods
]