setup: format

This commit is contained in:
Richard Kubíček
2025-01-25 19:18:07 +01:00
parent 5d6cb1c304
commit 84f5cd8642

View File

@@ -1,15 +1,12 @@
from setuptools import setup, find_namespace_packages
setup(
name='superfaktura_client',
version='0.1.0',
name="superfaktura_client",
version="0.1.0",
packages=find_namespace_packages(),
url='https://github.com/eledio-helpers/superfaktura-client',
license='GNU GPLv3',
author='Richard Kubíček',
author_email='kubicekr@eledio.com',
install_requires=[
"requests",
"python-dotenv"
],
url="https://github.com/eledio-helpers/superfaktura-client",
license="GNU GPLv3",
author="Richard Kubíček",
author_email="kubicekr@eledio.com",
install_requires=["requests", "python-dotenv"],
)