generated from allenai/python-package-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
101 lines (88 loc) · 2.03 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
[build-system]
build-backend = 'mesonpy'
requires = ['meson-python', "wheel", "ninja", "pybind11", "numpy"]
[project]
name = "simplextree"
version = '0.1.4'
readme = "README.md"
classifiers = [
"Intended Audience :: Science/Research",
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3"
]
authors = [
{ name = "Matt Piekenbrock", email = "matt.piekenbrock@gmail.com" }
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"scipy",
"more_itertools"
]
license = {file = "LICENSE"}
[project.urls]
Homepage = "https://github.com/peekxc/simplextree-py"
Repository = "https://github.com/peekxc/simplextree-py"
Changelog = "https://github.com/peekxc/simplextree-py/blob/main/CHANGELOG.md"
Documentation = "https://peekxc.github.io/simplextree-py/pages/"
[project.optional-dependencies]
dev = [
"ruff",
"mypy>=1.0,<1.6",
"black>=23.0,<24.0",
"isort>=5.12,<5.13",
"pytest",
"pytest-cov",
"twine>=1.11.0",
"build",
"setuptools",
"wheel",
"packaging"
]
[tool.meson-python.args]
setup = ['--default-library=static']
[tool.cibuildwheel]
test-requires = ["pytest", "pytest-cov", "coverage"]
test-command = "coverage run --source={package} -m pytest {package}/tests"
[tool.black]
line-length = 180
include = '\.pyi?$'
exclude = '''
(
__pycache__
| \.git
| \.mypy_cache
| \.pytest_cache
| \.vscode
| \.venv
| \bdist\b
| \bdoc\b
)
'''
[tool.isort]
profile = "black"
multi_line_output = 3
# You can override these pyright settings by adding a personal pyrightconfig.json file.
[tool.pyright]
reportPrivateImportUsage = false
[tool.ruff]
line-length = 140
target-version = "py39"
[tool.ruff.per-file-ignores]
"__init__.py" = ["F401"]
[tool.mypy]
ignore_missing_imports = true
no_site_packages = true
check_untyped_defs = true
[[tool.mypy.overrides]]
module = "tests.*"
strict_optional = false
[tool.pytest.ini_options]
testpaths = "tests/"
python_classes = [
"Test*",
"*Test"
]
log_format = "%(asctime)s - %(levelname)s - %(name)s - %(message)s"
log_level = "DEBUG"