Skip to content

Commit

Permalink
GitAuto: [FEATURE] Add support to PIP/PyPI - Python (#546)
Browse files Browse the repository at this point in the history
* Update setup.py.

* Update MANIFEST.in.

* Update pyproject.toml.

* style: format code with ClangFormat, dotnet-format, Go fmt, Gofumpt, isort, PHP CS Fixer, RuboCop, Ruff Formatter, Rustfmt, StandardRB and swift-format

This commit fixes the style issues introduced in c619f43 according to the output
from ClangFormat, dotnet-format, Go fmt, Gofumpt, isort, PHP CS Fixer, RuboCop,
Ruff Formatter, Rustfmt, StandardRB and swift-format.

Details: #546

* Update infisical-secrets-check.yml

---------

Co-authored-by: gitauto-ai[bot] <161652217+gitauto-ai[bot]@users.noreply.github.com>
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Co-authored-by: gstraccini[bot] <150967461+gstraccini[bot]@users.noreply.github.com>
Co-authored-by: Guilherme Branco Stracini <[email protected]>
  • Loading branch information
4 people authored Feb 13, 2025
1 parent af8d951 commit a7ce4e7
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include LICENSE
include README.md
include README.pt-br.md
5 changes: 5 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
20 changes: 20 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
from setuptools import find_packages, setup

setup(
name="BancosBrasileiros",
version="0.1.0",
description="A package for Brazilian banks information",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="guibranco",
author_email="[email protected]",
url="https://github.com/guibranco/BancosBrasileiros",
packages=find_packages(where="src"),
package_dir={"": "src"},
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)

0 comments on commit a7ce4e7

Please sign in to comment.