-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.35 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.35 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[project]
name = "exonetapi"
version = "5.1.0"
description = "Library to interact with the Exonet API."
authors = [{ name = "Exonet", email = "development@exonet.nl" }]
maintainers = [{ name = "Exonet", email = "development@exonet.nl" }]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/exonet/exonet-api-python"
repository = "https://github.com/exonet/exonet-api-python"
documentation = "https://github.com/exonet/exonet-api-python"
keywords = ["async", "client", "exonet", "exonetapi"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10"
dependencies = [
"inflection==0.5.1",
"requests==2.32.4",
]
[tool.poetry]
packages = [
{include = "exonetapi"},
{include = "exonetapi/**/*.py"},
]
[tool.poetry.group.dev.dependencies]
black = {version = "^26.1.0", allow-prereleases = true}
flake8 = "^7.3.0"
pytest = "^9.0.2"
pytest-cov = "^7.0.0"
bandit = "^1.9.4"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]