Files
superfaktura-client/setup.py
Richard Kubíček 5b2743a26a Update setup.py
2025-01-16 14:04:08 +01:00

16 lines
384 B
Python

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