25 lines
459 B
TOML
25 lines
459 B
TOML
[build-system]
|
|
requires = ["setuptools>=61"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "oxipy"
|
|
version = "0.1.0"
|
|
description = "Oxi API client"
|
|
readme = "README.md"
|
|
requires-python = ">=3.11"
|
|
dependencies = [
|
|
"pydantic>=2.12.5",
|
|
"requests>=2.32.5",
|
|
"ttp>=0.10.0",
|
|
]
|
|
|
|
[tool.setuptools.packages.find]
|
|
where = ["."]
|
|
include = ["oxi*"]
|
|
|
|
[tool.setuptools]
|
|
include-package-data = true
|
|
|
|
[tool.setuptools.package-data]
|
|
"oxi" = ["**/*.ttp"] |