-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.48 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
53
54
55
56
57
58
59
60
61
62
63
[tool.poetry]
name = "git_cdn"
version = "v0.0.0"
description = "a Content Delivery Network for git"
authors = ["Nestor team <[email protected]>"]
classifiers = [
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
]
homepage = "https://gitlab.com/grouperenault/git_cdn"
packages = [
{ include = 'git_cdn/*.py' },
{ include = 'git_cdn/lock/*.py' },
{ include = 'git_cdn/cache_handler/*.py'}
]
include = [{path = 'git_cdn/tests/**/*', format = 'sdist'},
{path = 'git_cdn/tests/*', format = 'sdist'}]
[tool.poetry.dependencies]
python = ">=3.10,<4"
structlog = ">=21.5.0"
aiohttp = "^3.8.3"
gunicorn = "*"
sentry-sdk = "^1.10.1"
ujson = "*"
uvloop = "^0.17.0"
newrelic = "*"
[tool.poetry.dev-dependencies]
black = ">=22.12.0"
isort = "*"
colorama = "*"
pytest = "*"
pylint = "^2.15.8"
pytest-mock = "*"
pytest-sugar = "*"
rope = "*"
aiohttp-devtools = "*"
pytest-cov = "*"
pytest-asyncio = "*"
pytest-aiohttp = "*"
pytest-benchmark = "*"
typed-ast = "*"
mock = "*"
yarl = "*"
flake8 = "^6.0.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.poetry.scripts]
clean-gitcdn-cache = "git_cdn.cache_handler.clean_cache:main"
[tool.pytest.ini_options]
asyncio_mode = "strict"