1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "fluss_api"
version = "0.1.9.12"
description = "Fluss+ API Client"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"aiohttp>=3.7.0,<4.0"
]
license = {text = "MIT License"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
authors = [
{ name = "Marcello Jardim", email = "marcello@fluss.io" }
]
[project.urls]
Homepage = "https://github.com/fluss/Fluss_Python_Library"
[tool.setuptools.packages.find]
where = ["."]
|