-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (56 loc) · 1.33 KB
/
Copy pathpyproject.toml
File metadata and controls
68 lines (56 loc) · 1.33 KB
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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "limnoria-dictionary"
version = "1.0.0"
description = "A Limnoria plugin providing dictionary lookups with clean, expressive output."
readme = "README.md"
requires-python = ">=3.10"
license = "BSD-3-Clause"
authors = [
{ name = "Alcheri", email = "barry.suridge@gmail.com" }
]
keywords = ["limnoria", "supybot", "plugin", "dictionary"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = []
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"black",
"mypy",
]
[project.entry-points.'limnoria.plugins']
Dictionary = "limnoria_dictionary"
[project.urls]
Homepage = "https://github.com/Alcheri/Dictionary"
Issues = "https://github.com/Alcheri/Dictionary/issues"
[tool.setuptools.package-dir]
"limnoria_dictionary" = "."
"limnoria_dictionary.local" = "local/"
[tool.setuptools.package-data]
"limnoria_dictionary" = ["locales/*.po"]
[tool.black]
line-length = 79
target-version = ["py310"]
extend-exclude = '''
/(
backup
| conf
| data
| logs
| tmp
| __pycache__
| \.pytest_cache
)/
'''
[tool.mypy]
python_version = "3.10"
strict = true
[tool.pytest.ini_options]
addopts = "--strict-markers --disable-warnings"
python_files = ["test.py"]