-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
75 lines (66 loc) · 1.55 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
64
65
66
67
68
69
70
71
72
73
74
75
[build-system]
requires = [
"setuptools>=69.0",
"setuptools-scm",
"Cython>=3"
]
build-backend = "setuptools.build_meta"
[project]
name = "splinter"
description = "The ultimate expense-sharing app"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12"
]
license = { file = "LICENSE" }
authors = [
{ name = "dSquare", email = "[email protected]" }
]
urls = { dSquare = "https://dsquare.io" }
dependencies = [
"Django>=5",
"psycopg2-binary",
"djangorestframework>=3.14",
"orjson",
"django-otp",
"sentry-sdk",
"celery",
"django-redis",
"user-agents",
"drf-spectacular",
"pyjwt[crypto]"
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"isort",
"black",
"coverage",
"parameterized",
"factory_boy",
]
[project.scripts]
splinter = "splinter.entrypoint:main"
[tool.setuptools.packages.find]
include = ["splinter", "splinter.*"]
[tool.setuptools.dynamic]
version = { attr = "splinter.__version__" }
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 120
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.semantic_release]
version_variables = ['splinter/__init__.py:__version__']
commit_author = 'dSquare <[email protected]>'
commit_message = 'Bump to {version}'
[tool.semantic_release.publish]
upload_to_vcs_release = true