Skip to content

Commit b771b8e

Browse files
author
Ivanildo Barauna de Souza Junior
committed
Setup PreBuild
1 parent 1073fdf commit b771b8e

File tree

13 files changed

+41
-4
lines changed

13 files changed

+41
-4
lines changed

api_to_dataframe/src/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from . import run as ApiToDataframe
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

api_to_dataframe/src/run.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
class ApiToDataframe:
2+
def __init__(self, name: str):
3+
pass
4+
5+
def say_hello(self):
6+
print(f"Hello {self.name}")
File renamed without changes.
File renamed without changes.

pyproject.toml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
11
[tool.poetry]
22
name = "api-to-dataframe"
33
version = "v0.0.1"
4-
description = "'api-to-dataframe' é uma biblioteca Python que facilita a obtenção de dados de endpoints de API, convertendo-os diretamente em DataFrames do Pandas. Esta biblioteca oferece funcionalidades robustas, incluindo estratégias de retry para requisições falhadas e geração automática de relatórios detalhados sobre os dados recebidos."
4+
description = "A package to convert API responses to pandas dataframe"
55
authors = ["IvanildoBarauna <ivanildo.jnr@outlook.com>"]
66
readme = "README.md"
77
license = "MIT"
8-
packages = [{ include = "src" }]
8+
packages = [{ include = "api_to_dataframe" }]
9+
classifiers=[
10+
"Development Status :: 1 - Planning",
11+
"Intended Audience :: Developers",
12+
"License :: OSI Approved :: MIT License",
13+
"Programming Language :: Python :: 3",
14+
"Programming Language :: Python :: 3.8",
15+
]
16+
17+
[tool.project.urls]
18+
url="https://github.com/IvanidoBarauba/api-to-dataframe"
19+
license="MIT"
920

1021
[tool.poetry.dependencies]
1122
python = "^3.9"

0 commit comments

Comments
 (0)