-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (54 loc) · 1.59 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 = ["setuptools>=64", "pyinstaller", "pytest", "ruff", "alembic"]
build-backend = "setuptools.build_meta"
[project]
name = "pepper-local"
description = "A simple utility application for merging telematics location data"
license = { text = "MIT" }
version = "0.1"
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "drolx Labs", email = "dev@drolx.com" }]
keywords = ["Jobs", "Tasks", "Tool", "Utility"]
urls = { Homepage = "https://github.com/drolx/pepper-local" }
classifiers = [
"License :: OSI Approved :: MIT",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Background Job/Script Utilities",
]
dependencies = [
"gunicorn",
"python-dotenv>=1.0.1",
"aiohttp-jinja2>=1.6",
"marshmallow_sqlalchemy>=1.1.0",
"psycopg2-binary>=2.9.5",
"SQLAlchemy>=2.0.29",
"alembic >= 1.14.1",
"aiohttp-swagger3>=0.9.0",
]
[project.scripts]
app = "app.__main__:main"
[tool.setuptools.packages.find]
where = ["app"]
include = ["app"]
namespaces = true
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
app = ['*.json', '*.yaml', '.yml', '*.html']
[tool.ruff.lint]
extend-safe-fixes = ["F601"]
extend-unsafe-fixes = ["UP034"]
[tool.ruff]
line-length = 135
[tool.ruff.format]
quote-style = "single"
indent-style = "tab"
docstring-code-format = true
docstring-code-line-length = 25