Files
kontur-focus-lib/setup.py
Ilya Sapunov 18545789ba 2025.12.0: Added new method, updated docs
Check if company in sanctions lists, added new docs theme
2025-12-23 17:11:55 +03:00

19 lines
685 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.12.0",
author="Ilya Sapunov",
author_email="me@slrover.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',
)