api-to-dataframe 0.0.2__tar.gz → 0.0.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: api-to-dataframe
3
- Version: 0.0.2
3
+ Version: 0.0.4
4
4
  Summary: A package to convert API responses to pandas dataframe
5
5
  License: MIT
6
6
  Author: IvanildoBarauna
@@ -15,8 +15,8 @@ Classifier: Programming Language :: Python :: 3.10
15
15
  Classifier: Programming Language :: Python :: 3.11
16
16
  Classifier: Programming Language :: Python :: 3.12
17
17
  Classifier: Programming Language :: Python :: 3.8
18
- Requires-Dist: pandas (>=1.4.0,<2.0.0)
19
- Requires-Dist: requests (>=2.26.0,<3.0.0)
18
+ Requires-Dist: pandas (==2.0.0)
19
+ Requires-Dist: requests (==2.30.0)
20
20
  Description-Content-Type: text/markdown
21
21
 
22
22
  # Python Application
@@ -1,11 +1,11 @@
1
1
  [tool.poetry]
2
2
  name = "api-to-dataframe"
3
- version = "v0.0.2"
3
+ version = "0.0.4"
4
4
  description = "A package to convert API responses to pandas dataframe"
5
5
  authors = ["IvanildoBarauna <ivanildo.jnr@outlook.com>"]
6
6
  readme = "README.md"
7
7
  license = "MIT"
8
- packages = [{ include = "api_to_dataframe" }]
8
+ packages = [{ include = "api_to_dataframe", from = "src" }]
9
9
  classifiers=[
10
10
  "Development Status :: 1 - Planning",
11
11
  "Intended Audience :: Developers",
@@ -14,19 +14,24 @@ classifiers=[
14
14
  "Programming Language :: Python :: 3.8",
15
15
  ]
16
16
 
17
+ [tool.poetry.group.dev.dependencies]
18
+ poetry-dynamic-versioning = "^1.3.0"
19
+ pytest = "^8.2.2"
20
+ coverage = "^7.5.3"
21
+
17
22
  [tool.project.urls]
18
- url="https://github.com/IvanidoBarauba/api-to-dataframe"
23
+ url="https://github.com/IvanidoBarauna/api-to-dataframe"
19
24
  license="MIT"
20
25
 
21
26
  [tool.poetry.dependencies]
22
27
  python = "^3.9"
23
- requests="^2.26.0"
24
- pandas="^1.4.0"
25
-
26
- [tool.poetry.dev-dependencies]
27
- pytest="^8.2.2"
28
- coverage="^7.5.3"
28
+ pandas = "2.0.0"
29
+ requests = "2.30.0"
29
30
 
30
31
  [build-system]
31
32
  requires = ["poetry-core"]
32
- build-backend = "poetry.core.masonry.api"
33
+ build-backend = "poetry.core.masonry.api"
34
+
35
+ [tool.poetry-dynamic-versioning]
36
+ enable = true
37
+ versioning = "semantic"
@@ -1,6 +1,6 @@
1
1
  class ApiToDataframe:
2
2
  def __init__(self, name: str):
3
- pass
3
+ self.name = name
4
4
 
5
5
  def say_hello(self):
6
6
  print(f"Hello {self.name}")
@@ -1,5 +0,0 @@
1
- import pytest
2
- from . import run
3
-
4
- def test_main():
5
- assert True