mirror of
https://github.com/Eledio/superfaktura-client.git
synced 2025-11-01 00:18:25 +01:00
16 lines
393 B
Python
16 lines
393 B
Python
from setuptools import setup, find_namespace_packages
|
|
|
|
setup(
|
|
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"
|
|
],
|
|
)
|