-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
103 lines (90 loc) · 1.71 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[project]
name = 'worldmaster'
version = '0.1.0'
description = 'The WorldMaster tabletop RPG Wiki and game manager'
readme = 'README.md'
requires-python = '>= 3.10'
license = { text = 'AGPL-3.0-or-later' }
keywords = ['rpg', 'games', 'wiki']
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Topic :: Games/Entertainment :: Role-Playing',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Wiki',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
]
dependencies = [
'Django[argon2] >= 4.2.0, < 4.3',
'django-stubs >= 4.2.6, < 5',
'ptpython >= 3.0.22',
'Werkzeug >= 2.2.2, < 3.0.0',
'Jinja2 >= 3.1.2, < 4.0.0',
]
[project.optional-dependencies]
dev = [
'django-extensions',
'ruff',
]
[project.urls]
repository = 'https://codeberg.org/WorldMaster/WorldMaster'
[[project.authors]]
email = 'taywee@gmx.com'
name = 'Taylor C. Richberger'
[[project.authors]]
email = 'btp@brandont.dev'
name = 'Brandon Phillips'
[[project.maintainers]]
email = 'taywee@gmx.com'
name = 'Taylor C. Richberger'
[[project.maintainers]]
email = 'btp@brandont.dev'
name = 'Brandon Phillips'
[build-system]
requires = ['flit_core >=3.2,<4']
build-backend = 'flit_core.buildapi'
[tool.ruff]
select = [
'B',
'C4',
'COM',
'D',
'E',
'EM',
'EXE',
'F',
'FA',
'FLY',
'G',
'I',
'ISC',
'PERF',
'PIE',
'PL',
'PTH',
'Q',
'RET',
'RSE',
'RUF',
'SIM',
'TCH',
'TD',
'TID',
'TRY',
'UP',
'W',
]
ignore = [
'RUF012',
'D203',
'D213',
'D104',
'D100',
'D101',
'D106',
'D105',
'D102',
]
line-length = 128
[tool.ruff.per-file-ignores]
'**/migrations/*.py' = ['ALL']