19 lines
691 B
Python
19 lines
691 B
Python
from setuptools import setup, find_packages
|
||
|
||
setup(
|
||
name="kontur_focus",
|
||
version="2025.11.4",
|
||
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',
|
||
) |