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