-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (32 loc) · 751 Bytes
/
pyproject.toml
File metadata and controls
37 lines (32 loc) · 751 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>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "dbviewer"
version = "1.0.0"
description = "Web-based database viewer and management tool"
requires-python = ">=3.10"
license = {text = "MIT"}
dependencies = [
"fastapi>=0.104",
"uvicorn[standard]>=0.24",
"bcrypt>=4.0",
"python-multipart>=0.0.6",
"pymysql>=1.1",
"psycopg2-binary>=2.9",
"pymssql>=2.2",
"openpyxl>=3.1",
"httpx>=0.25",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"httpx>=0.25",
]
[project.scripts]
dbviewer = "dbviewer.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
dbviewer = ["static/*"]