Added method for downloading reports in PDF, added packaging tools.

This commit is contained in:
2024-05-02 16:03:21 +03:00
parent 78f1864576
commit 59f420c725
3 changed files with 49 additions and 2 deletions

19
setup.py Normal file
View File

@@ -0,0 +1,19 @@
from setuptools import setup, find_packages
setup(
name="kontur_focus",
version="0.1.0",
author="Ilya Sapunov",
author_email="sapunov@selectel.ru",
description="Библиотека-обертка для взаимодействия с REST API Контур.Фокус",
url="https://git.selectel.org/is/public/kontur-focus-lib",
license="MIT",
packages=find_packages(),
install_requires=["requests", "python-dotenv"],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.9',
)