-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
87 lines (82 loc) · 1.92 KB
/
Copy pathpyproject.toml
File metadata and controls
87 lines (82 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
[build-system]
requires = ['hatchling']
build-backend = 'hatchling.build'
[project]
name = 'hius'
version = '0.3.0'
description = 'Minimalistic ASGI web framework'
readme = 'README.md'
license = 'MIT'
requires-python = '>=3.7'
authors = [
{ name = 'Nikita Ryabinin', email = 'ryabinin.ne@gmail.com' },
]
keywords = [
'api',
'asgi',
'http',
'websocket',
'pydantic',
'starlette',
'hius',
'framework'
]
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: AsyncIO',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet :: WWW/HTTP :: HTTP Servers',
'Topic :: Software Development :: Libraries :: Application Frameworks'
]
dependencies = [
'starlette ==0.21.0',
'pydantic ==1.10.2',
'pydantic-openapi-schema ==1.3.0'
]
[project.urls]
Homepage = 'https://github.com/WoolenSweater/hius'
Documentation = 'https://woolensweater.github.io/hius/'
Changelog = 'https://github.com/WoolenSweater/hius/blob/main/CHANGELOG.md'
[project.optional-dependencies]
test = [
'httpx ==0.23.0',
'pytest ==7.2.0',
'pytest-cov ==4.0.0',
'python-multipart ==0.0.5'
]
doc = [
'mkdocs ==1.4.2',
'mkdocs-material ==8.5.10'
]
uvicorn = [
'uvicorn[standard] ==0.19.0'
]
multipart = [
'python-multipart ==0.0.5'
]
[tool.pytest.ini_options]
testpaths = 'tests'
addopts = [
'--capture=no',
'--verbose',
'--tb=short',
'--cov',
'--cov-report=term-missing'
]
[tool.coverage.run]
omit = [
'.venv/*',
'venv/*',
'.env/*',
'env/*',
'tests/*'
]