-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (44 loc) · 1.43 KB
/
pyproject.toml
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
47
48
[project]
name = "exonetapi"
version = "5.0.0"
description = "Library to interact with the Exonet API."
authors = [{ name = "Exonet", email = "[email protected]" }]
maintainers = [{ name = "Exonet", email = "[email protected]" }]
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.9",
"Programming Language :: Python :: 3.10",
"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.9"
dependencies = [
"inflection==0.5.1",
"requests==2.32.3",
]
[tool.poetry]
packages = [
{include = "exonetapi"},
{include = "exonetapi/**/*.py"},
]
[tool.poetry.group.dev.dependencies]
black = {version = "^24.8.0", allow-prereleases = true}
flake8 = "^5.0.4"
pytest = "^8.3.4"
pytest-cov = "^5.0.0"
bandit = "^1.7.10"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]