Skip to content

Commit

Permalink
chore: remove unecessary packages for better dev experience
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanildoBarauna committed Jun 15, 2024
1 parent 9ec2aa4 commit a9608a6
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
18 changes: 10 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "api-to-dataframe"
version = "1.0.2"
version = "1.0.3"
description = "A package to convert API responses to pandas dataframe"
authors = ["IvanildoBarauna <[email protected]>"]
readme = "README.md"
Expand All @@ -22,24 +22,26 @@ Homepage = "https://github.com/IvanildoBarauna/api-to-dataframe"
Documentation = "https://github.com/IvanildoBarauna/api-to-dataframe#readme"
Issues = "https://github.com/IvanildoBarauna/api-to-dataframe/issues"

[tool.setuptools.packages.find]
where = ["src"]
include = ["api_to_dataframe*"]
[tool.poetry.dependencies]
python = "^3.9"
pandas = "^2.2.2"
requests = "^2.32.3"

[tool.poetry.group.dev.dependencies]
poetry-dynamic-versioning = "^1.3.0"
pytest = "^8.2.2"
coverage = "^7.5.3"

[tool.poetry.dependencies]
python = "^3.9"
pandas = "^2.2.2"
requests = "^2.32.3"

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.setuptools.packages.find]
where = ["src/"]
include = ["api_to_dataframe*"]


[tool.poetry-dynamic-versioning]
enable = true
versioning = "semantic"
2 changes: 0 additions & 2 deletions src/api_to_dataframe/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
from .controller.client_builder import ClientBuilder
from .common.utils.retry_strategies import RetryStrategies

__all__ = ['ClientBuilder', 'RetryStrategies']
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.

0 comments on commit a9608a6

Please sign in to comment.