-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (67 loc) · 1.82 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Copyright (C) 2023, CERN
# This software is distributed under the terms of the MIT
# licence, copied verbatim in the file "LICENSE".
# In applying this license, CERN does not waive the privileges and immunities
# granted to it by virtue of its status as Intergovernmental Organization
# or submit itself to any jurisdiction.
[build-system]
requires = ["setuptools>=61", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "simple-repository-browser"
dynamic = ["version"]
description = "A web interface to browse and search packages in any simple package repository (PEP-503), inspired by PyPI / warehouse"
requires-python = ">=3.11"
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
authors = [
{name = "Phil Elson"},
{name = "Francesco Iannaccone"},
{name = "Ivan Sinkarenko"},
]
dependencies = [
"httpx",
"aiosqlite",
"diskcache",
"docutils",
"fastapi",
"importlib_metadata>=6.0",
"jinja2",
"markdown",
"markupsafe",
"packaging",
"parsley",
"pkginfo",
"readme-renderer[md]",
"simple-repository>=0.6",
"uvicorn",
]
readme = "README.md"
[project.urls]
Homepage = "https://github.com/simple-repository/simple-repository-browser"
[project.optional-dependencies]
test = [
"pytest",
]
dev = [
"simple-repository-browser[test]",
]
[project.scripts]
simple-repository-browser = "simple_repository_browser.__main__:main"
[tool.setuptools_scm]
version_file = "simple_repository_browser/_version.py"
[[tool.mypy.overrides]]
module = [
"diskcache",
"parsley",
]
ignore_missing_imports = true
[tool.setuptools.packages.find]
include = ["simple_repository_browser", "simple_repository_browser.*"]
namespaces = false
[tool.setuptools.package-data]
# Static untracked files
"*" = ["static/js/*"]