-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.48 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
[build-system]
requires = ["hatchling ~= 1.18"]
build-backend = "hatchling.build"
[project]
name = "parq"
version = "0.3.0"
description = "A multi-process job queue"
readme = "README.rst"
requires-python = ">= 3.8"
license = {file = "LICENSE"}
authors = [
{name = "Rob Moss", email = "[email protected]"}
]
maintainers = [
{name = "Rob Moss", email = "[email protected]"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Mathematics",
]
dependencies = []
[project.optional-dependencies]
tests = [
'pytest',
'pytest-cov ~= 4.0',
]
[project.urls]
homepage = "https://bitbucket.org/robmoss/job-queue/"
repository = "https://bitbucket.org/robmoss/job-queue/"
documentation = "https://parq.readthedocs.io/en/latest/"
changelog = "https://parq.readthedocs.io/en/latest/changelog.html"
[tool.pytest.ini_options]
addopts = """\
--doctest-modules \
--doctest-glob='*.rst' \
--capture=no \
--cov-report term-missing \
--cov-report html\
"""
[tool.coverage.run]
concurrency = ["multiprocessing"]
parallel = true
sigterm = true
source = ["parq"]
[tool.ruff]
# Enable pyflakes (F), pycodestyle (E, W), and flake8-bugbear (B).
select = ["F", "E", "W", "B"]
line-length = 78
target-version = "py38"
[tool.ruff.format]
quote-style = "single"