-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (42 loc) · 898 Bytes
/
pyproject.toml
File metadata and controls
48 lines (42 loc) · 898 Bytes
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "limnoria-localcontrol"
version = "1.1.0"
authors = [
{ name = "Barry KW Suridge" }
]
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"limnoria",
]
classifiers = [
'Environment :: Plugins',
'Programming Language :: Python :: 3',
'Topic :: Communications :: Chat',
]
[project.entry-points.'limnoria.plugins']
LocalControl = "limnoria_localcontrol"
[tool.black]
line-length = 79
target-version = ["py311"]
extend-exclude = '''
/(
backup
| conf
| data
| logs
| tmp
| __pycache__
| \.pytest_cache
)/
'''
[tool.setuptools.package-dir]
"limnoria_localcontrol" = "."
"limnoria_localcontrol.local" = "local/"
[tool.setuptools.package-data]
"limnoria_localcontrol" = ["locales/*.po"]
[tool.pytest.ini_options]
python_files = ["test.py"]