-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
pyproject.toml
63 lines (57 loc) · 1.69 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
[build-system]
requires = ["flit_core >=3.9,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "bottle"
dynamic = ["version"]
requires-python = ">=3.8"
license = {file = "LICENSE"}
description = "Fast and simple WSGI-framework for small web-applications."
readme = "README.rst"
keywords = ["bottle", "wsgi", "microframework"]
authors = [
{name = "Marcel Hellkamp", email = "[email protected]"},
]
classifiers = [
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Bottle",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Programming Language :: Python :: 3",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"sphinx",
"sphinx-autobuild",
"sphinx-intl",
"build",
"twine",
]
[project.urls]
Homepage = "https://bottlepy.org"
Documentation = "https://bottlepy.org"
Repository = "http://github.com/bottlepy/bottle.git"
Issues = "https://github.com/bottlepy/bottle/issues"
Changelog = "https://bottlepy.org/docs/dev/changelog.html"
[project.scripts]
"bottle" = "bottle:main"
[tool.flit.sdist]
include = [
"test/*.py",
"test/views/*.tpl",
"AUTHORS"
]
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = [ "test" ]