-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (40 loc) · 1.29 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
[tool.poetry]
name = "exonetapi"
version = "4.0.0"
description = "Library to interact with the Exonet API."
authors = ["Exonet <[email protected]>"]
maintainers = ["Exonet <[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",
"Topic :: Software Development :: Libraries :: Python Modules",
]
packages = [
{include = "exonetapi"},
{include = "exonetapi/**/*.py"},
]
[tool.poetry.dependencies]
inflection = "^0.5.1"
python = "^3.8"
requests = "^2.27.1"
[tool.poetry.dev-dependencies]
black = {version = "^24.8.0", allow-prereleases = true}
flake8 = "^5.0.4"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
bandit = "^1.7.10"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core>=1.0.0"]