forked from arXiv/arxiv-browse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (46 loc) · 1.2 KB
/
Copy pathpyproject.toml
File metadata and controls
52 lines (46 loc) · 1.2 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
[project]
name = "browse"
version = "1.0.0"
description = "arXiv public browse and download app."
authors = []
requires-python = ">=3.11"
readme = "README.md"
dependencies = [
"MarkupSafe",
"pydantic==2.*",
"python-dateutil",
"arxiv-base",
"flask>=3.0.2,<4",
"gunicorn>=23.0.0,<24",
]
[dependency-groups]
dev = [
"beautifulsoup4",
"coverage",
"hypothesis",
"mypy",
"pycodestyle",
"pydocstyle",
"pylint",
"pytest",
"pytest-cov",
"pytest-easyread",
"pytest-html",
"pytest-mock",
"types-requests>=2.31.0.20240125,<3",
"requests-mock>=1.12.1,<2",
"ruff>=0.11.8,<0.12",
]
[tool.uv]
exclude-newer = "1 week"
exclude-newer-package = { arxiv-base = "1 minute" }
[tool.uv.sources]
arxiv-base = { git = "https://github.com/arXiv/arxiv-base.git", branch = "master" }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning",
"ignore:As the c extension couldn't be imported, `google-crc32c` is using a pure python implementation that is significantly slower. If possible, please configure a c build environment and compile the extension:RuntimeWarning",
]