28 lines
564 B
TOML
28 lines
564 B
TOML
[tool.poetry]
|
|
name = "poly-ticket-api-client"
|
|
version = "0.0.1"
|
|
description = "A client library for accessing PolyTicket API"
|
|
authors = []
|
|
readme = "README.md"
|
|
packages = [
|
|
{include = "poly_ticket_api_client"},
|
|
]
|
|
include = ["CHANGELOG.md", "poly_ticket_api_client/py.typed"]
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.9"
|
|
httpx = ">=0.23.0,<0.29.0"
|
|
attrs = ">=22.2.0"
|
|
python-dateutil = "^2.8.0"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.ruff]
|
|
line-length = 120
|
|
|
|
[tool.ruff.lint]
|
|
select = ["F", "I", "UP"]
|