forked from buserbrasil/barte-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request buserbrasil#4 from MarcosGrandesso/MarcosGrandesso…
…/issue3 Migrate from setup.py to `pyproject.toml`
- Loading branch information
Showing
3 changed files
with
29 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[project] | ||
name = "barte-python-sdk" | ||
version = "0.1.0" | ||
description = "Python SDK for integration with Barte API" | ||
requires-python = ">=3.11" | ||
authors = [{ name = "Thiago Avelino", email = "[email protected]" }, | ||
{ name = "Erle Carrara", email = "[email protected]" }, | ||
{ name = "Walison Filipe", email = "[email protected]" }, | ||
{ name = "Marcos Grandesso", email = "[email protected]" }, | ||
] | ||
dependencies = ["requests==2", | ||
"dacite==1", | ||
"python-dateutil>=2.8.0,<3" | ||
] | ||
classifiers = [ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
] | ||
|
||
[tool.uv] | ||
package = true | ||
dev-dependencies = [ | ||
"pytest>=7.0.0", | ||
"requests-mock>=1.10.0", | ||
"pytest-cov>=4.0.0", | ||
"python-dateutil>=2.8.0" | ||
] |