File: pyproject.toml

package info (click to toggle)
python-fluss-api 0.1.9.20-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 136 kB
  • sloc: python: 189; makefile: 2
file content (29 lines) | stat: -rw-r--r-- 651 bytes parent folder | download
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 = ["."]