-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (54 loc) · 1.56 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
[tool.poetry]
name = "pq-dashboard"
version = "0.1.1"
description = "Web dashboard and CLI utility for managing PQ queues"
authors = ["Tom Keefe <[email protected]>"]
homepage = "https://github.com/MisterKeefe/pq-dashboard"
repository = "https://github.com/MisterKeefe/pq-dashboard"
keywords = ["pq", "dashboard", "postgres"]
classifiers = [
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: JavaScript",
"Programming Language :: Python :: 3",
"Programming Language :: SQL",
"Topic :: Database :: Front-Ends",
]
readme = "README.md"
license = "MIT"
include = [
"LICENSE",
"pq_dashboard/frontend/www/assets/styles.css",
"pq_dashboard/frontend/www/assets/index.js",
"pq_dashboard/frontend/www/assets/favicon.png",
]
exclude = [
"pq_dashboard/frontend/node_modules/",
"**/*.pyc",
"pq_dashboard/frontend/src",
]
[tool.poetry.scripts]
pq-dashboard = "pq_dashboard.cli:main"
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
psycopg2 = "^2.9.1"
fastapi = "^0.67.0"
uvicorn = { extras = ["standard"], version = "^0.14.0" }
pydantic = "^1.8.2"
aiofiles = "^0.7.0"
pytest-postgresql = "^3.1.1"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
mypy = "^0.910"
black = "^21.7b0"
isort = "^5.9.2"
pre-commit = "^2.13.0"
pq = "^1.9.0"
pytest-cov = "^2.12.1"
requests = "^2.26.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"