File tree Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Expand file tree Collapse file tree 7 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " api-to-dataframe"
3- version = " 1.0.2 "
3+ version = " 1.0.3 "
44description = " A package to convert API responses to pandas dataframe"
55authors = [" IvanildoBarauna <ivanildo.jnr@outlook.com>" ]
66readme = " README.md"
@@ -22,24 +22,26 @@ Homepage = "https://github.com/IvanildoBarauna/api-to-dataframe"
2222Documentation = " https://github.com/IvanildoBarauna/api-to-dataframe#readme"
2323Issues = " https://github.com/IvanildoBarauna/api-to-dataframe/issues"
2424
25- [tool .setuptools .packages .find ]
26- where = [" src" ]
27- include = [" api_to_dataframe*" ]
25+ [tool .poetry .dependencies ]
26+ python = " ^3.9"
27+ pandas = " ^2.2.2"
28+ requests = " ^2.32.3"
2829
2930[tool .poetry .group .dev .dependencies ]
3031poetry-dynamic-versioning = " ^1.3.0"
3132pytest = " ^8.2.2"
3233coverage = " ^7.5.3"
3334
34- [tool .poetry .dependencies ]
35- python = " ^3.9"
36- pandas = " ^2.2.2"
37- requests = " ^2.32.3"
3835
3936[build-system ]
4037requires = [" poetry-core" ]
4138build-backend = " poetry.core.masonry.api"
4239
40+ [tool .setuptools .packages .find ]
41+ where = [" src/" ]
42+ include = [" api_to_dataframe*" ]
43+
44+
4345[tool .poetry-dynamic-versioning ]
4446enable = true
4547versioning = " semantic"
Original file line number Diff line number Diff line change 11from .controller .client_builder import ClientBuilder
22from .common .utils .retry_strategies import RetryStrategies
3-
4- __all__ = ['ClientBuilder' , 'RetryStrategies' ]
You can’t perform that action at this time.
0 commit comments