-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpyproject.toml
70 lines (61 loc) · 1.54 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
[project]
name = "smartmin"
version = "5.1.1"
description = "Scaffolding system for Django object management."
license = { text = "BSD" }
authors = [
{"name" = "TextIt", "email" = "[email protected]"}
]
readme = "README.md"
requires-python = ">=3.10,<3.13"
dependencies = [
"Django (>= 5.0,< 5.2)",
"celery (>=5.1)",
"redis (>=3.5.3)",
"sqlparse (>=0.4.1,<0.6.0)",
"xlrd (>=1.2.0)",
"xlwt (>=1.3.0)",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
packages = [
{ include = "smartmin" },
]
[project.urls]
repository = "http://github.com/nyaruka/smartmin"
[tool.poetry.group.dev.dependencies]
black = "^24.3.0"
coverage = {extras = ["toml"], version = "^7.2.7"}
isort = "^5.12.0"
ruff = "^0.0.278"
psycopg2-binary = "^2.9.1"
funcsigs = "^1.0.2"
Pillow = "^10.3.0"
colorama = "^0.4.6"
[tool.black]
line-length = 120
[tool.ruff]
line-length = 120
select = ["E", "F", "W"]
ignore = ["E501", "F405"]
fix = true
[tool.isort]
multi_line_output = 3
force_grid_wrap = 0
line_length = 120
include_trailing_comma = true
combine_as_imports = true
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "DJANGO", "FIRSTPARTY", "LOCALFOLDER"]
known_django = ["django"]
[tool.coverage.run]
source = ["smartmin"]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"