-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (40 loc) · 1.24 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
[tool.poetry]
name = "httpea"
version = "1.0.0"
description = "Httpea is a python library for abstracting http protocol components."
authors = ["Dawid Kraczkowski <[email protected]>"]
license = "MIT"
readme = "README.md"
packages = [
{include = "httpea"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
]
[tool.poetry.dependencies]
python = "^3.8"
pyaml = "^24.4.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.2"
ruff = "^0.5.0"
coverage = "^7.5.4"
mypy = "^1.10.1"
black = "^24.4.2"
isort = "^5.13.2"
[tool.poetry.group.edv.dependencies]
coverage = "^7.5.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"