-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
52 lines (48 loc) · 1.46 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
49
50
51
52
[tool.poetry]
name = "novaposhta-python-client"
packages = [
{ include = "novaposhta"}
]
version = "0.1.10"
description = "Python client for Nova Poshta API"
authors = ["Oleksii <semolex@live.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/semolex/novaposhta-python-client"
repository = "https://github.com/semolex/novaposhta-python-client"
keywords = [ "api", "nova-poshta", "novaposhta", "nova-poshta-api", "novaposhta-api"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Typing :: Typed"
]
exclude = [
"tests/*",
"tests/**/*",
"**/tests/*",
]
[tool.poetry.dependencies]
python = "^3.9"
httpx = ">=0.24.0"
[tool.poetry.group.dev.dependencies]
mypy = "^1.5.1"
black = "^24"
pytest = "^7.4.2"
pytest-httpx = "^0.26.0"
coverage = "^7.3.2"
pytest-asyncio = "^0.21.1"
isort = "^5.13.2"
pytest-cov = "^6.0.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"