-
Notifications
You must be signed in to change notification settings - Fork 27
/
pyproject.toml
51 lines (44 loc) · 1.14 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >= 61.0",
"setuptools-scm[toml] >= 3.4",
]
[project]
name = "proxpi"
authors = [
{ name = "Laurie O", email = "[email protected]" },
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"flask >= 2.0, < 4.0",
"jinja2 ~= 3.0",
"lxml >= 4.8, < 6.0",
"requests ~= 2.27",
]
description = "PyPI caching mirror"
keywords = ["pypi", "index", "mirror", "cache"]
license = { text = "MIT" }
readme = "README.md"
requires-python = "~= 3.7"
dynamic = ["version"]
[project.optional-dependencies]
pretty = [
"coloredlogs",
"colored-traceback",
]
[project.urls]
Repository = "https://github.com/EpicWink/proxpi"
[tool.setuptools]
include-package-data = false
package-data = { "proxpi" = ["templates/*.html"] }
package-dir = { "" = "src" }
packages = { find = { namespaces = false, where = ["src"] } }
[tool.setuptools_scm]