-
Notifications
You must be signed in to change notification settings - Fork 394
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 906 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 906 Bytes
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sqlite-web"
dynamic = ["version"]
description = "web-based sqlite database browser"
dependencies = [
"flask",
"peewee>=3.0.0",
"pygments"
]
readme = "README.md"
authors = [
{ name = "Charles Leifer", email = "coleifer@gmail.com" }
]
classifiers = [
"Environment :: Web Environment",
"Programming Language :: Python :: 3",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.scripts]
sqlite_web = "sqlite_web.sqlite_web:main"
sqlite_wsgi = "sqlite_web.wsgi_server:main"
[project.urls]
Repository = "https://github.com/coleifer/sqlite-web"
[tool.setuptools.dynamic]
version = { attr = "sqlite_web.sqlite_web.__version__" }
[tool.setuptools.packages.find]
include= ["sqlite_web*"]