Files
kontur-focus-lib/setup.py
Ilya Sapunov 4cc7d0ac7b Fixed search_global_company_profiles_id method
New response and fixed query parameter
2025-10-03 19:04:30 +03:00

19 lines
691 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
from setuptools import setup, find_packages
setup(
name="kontur_focus",
version="2025.10.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',
)