Skip to content

Commit e15755d

Browse files
build: initial app setup
1 parent 9259146 commit e15755d

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

codecov.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ coverage:
22
status:
33
project:
44
default:
5-
target: 80%
5+
target: 90%
66
# adjust accordingly based on how flaky your tests are
77
# this allows a 10% drop from the previous base commit coverage
88
threshold: 2%

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.poetry]
2-
name = "python-application"
3-
version = "v1.0.0"
4-
description = "Python Application"
2+
name = "api-to-dataframe"
3+
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."
55
authors = ["IvanildoBarauna <ivanildo.jnr@outlook.com>"]
66
readme = "README.md"
77
license = "MIT"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ def parse_requirements(filename):
88

99

1010
setup(
11-
name='"Python Application"',
12-
version="1.0.0",
11+
name='api-to-dataframe',
12+
version="v0.0.1",
1313
packages=find_packages(),
1414
install_requires=parse_requirements("requirements.txt"),
1515
)

0 commit comments

Comments
 (0)