-
Notifications
You must be signed in to change notification settings - Fork 47
/
pyproject.toml
69 lines (62 loc) · 1.99 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/bepasty/_version.py"
[project]
name = "bepasty"
dynamic = ["version"]
license = {text="BSD 2-clause"}
authors = [{name="The Bepasty Team (see AUTHORS file)"}]
maintainers = [{name="Thomas Waldmann", email="[email protected]"}]
description = "a binary pastebin / file upload service"
readme = "README.rst"
keywords = ["text", "image", "audio", "video", "binary", "pastebin", "upload", "download", "service", "wsgi", "flask"]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Framework :: Flask",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"werkzeug",
"Flask",
"markupsafe",
"Pygments>=2.12.0",
"xstatic",
"XStatic-asciinema-player",
"xstatic-bootbox>=5.4.0",
"xstatic-bootstrap>=4.0.0.0,<5.0.0.0",
"xstatic-font-awesome<5.0",
"xstatic-jquery",
"xstatic-jquery-ui",
"xstatic-jquery-file-upload",
"xstatic-pygments",
]
[project.scripts]
bepasty-server = "bepasty.cli.server:main"
bepasty-object = "bepasty.cli.object:main"
[project.optional-dependencies]
magic = ["python-magic"]
pillow = ["Pillow"]
[project.urls]
Homepage = "https://github.com/bepasty/bepasty-server/"
Documentation = "https://bepasty-server.readthedocs.org/"
Changelog = "https://github.com/bepasty/bepasty-server/blob/master/CHANGES.rst"
[tool.pytest.ini_options]
norecursedirs = [".eggs", ".git", ".tox", "build", ]
markers = [
"slow",
"needs_server",
]
[tool.flake8]
max-line-length = 120