forked from century-arcade/xd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (34 loc) · 974 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (34 loc) · 974 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
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "xdfile"
version = "1.9.0"
description = "A futureproof crossword corpus toolset"
readme = "README.md"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "Saul Pwanson", email = "xd@saul.pw" },
]
keywords = ["crossword", "puzzles", "xd"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
]
[project.urls]
Homepage = "https://github.com/century-arcade/xd"
[project.optional-dependencies]
puz = ["puzpy", "crossword"]
xml = ["lxml"]
all = ["puzpy", "crossword", "lxml"]
[tool.setuptools.packages.find]
include = ["xdfile*", "crossword*", "queries*"]
[tool.ruff]
exclude = ["crossword"] # exclude vendored package
[tool.ruff.lint]
select = ["E", "W", "F"]
ignore = ["E501"] # line too long :P
[tool.pytest.ini_options]
testpaths = ["tests", "xdfile/tests"]