-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
53 lines (49 loc) · 1.57 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
[project]
name = "python-bridge"
version = "0.1.2"
authors = [
{ name="Caelean Barnes", email="[email protected]" },
{ name="Evan Doyle", email="[email protected]" },
]
description = "A Python tool to abstract your Django infrastructure."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ['python', 'deployment', 'local', 'infrastructure', 'postgres', 'django', 'architecture']
dependencies = [
"docker==7.0.0",
"psycopg[binary]==3.1.18",
"redis==5.0.3",
"celery==5.3.6",
"flower==2.0.1",
"rich==13.7.1",
"pydantic==2.6.4",
"pyyaml==6.0.1",
"dj-database-url==2.1.0",
"psutil==5.9.8",
]
[project.urls]
Homepage = "https://github.com/never-over/bridge"
Issues = "https://github.com/never-over/bridge/issues"
[tool.pyright]
include = ["bridge"]
exclude = ["**/__pycache__", '**/.venv']
reportMissingTypeStubs = false
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project.scripts]
bridge = "bridge.cli.bridge:main"