[+] poetry

This commit is contained in:
Maxim Khomutov 2025-04-02 14:30:51 +03:00
parent c4d758f65a
commit fbb738fd1c
3 changed files with 28 additions and 1 deletions

3
poetry.toml Normal file
View File

@ -0,0 +1,3 @@
[virtualenvs]
create = true
in-project = true

25
pyproject.toml Normal file
View File

@ -0,0 +1,25 @@
[project]
name = "anixart"
version = "1.0.1"
description = "Wrapper for using the Anixart API."
authors = [
{name = "SantaSpeen",email = "santaspeen@gmail.com"}
]
license = {text = "FPA License"}
readme = "README.md"
requires-python = ">=3.10,<4.0"
dependencies = ["requests (>=2.32.3,<3.0.0)"]
dynamic = [ "classifiers" ]
[project.urls]
repository = "https://github.com/SantaSpeen/anixart"
[tool.poetry]
classifiers = [
"Development Status :: 3 - Alpha",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"

View File

@ -1 +0,0 @@
requests~=2.28.1