-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (63 loc) · 1.47 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
[project]
name = "pyarallel"
version = "0.1.2"
description = "A powerful parallel execution library for Python"
readme = "README.md"
requires-python = ">=3.12"
license = { file = "LICENSE.md" }
authors = [
{ name = "Mehmet Oner Yalcin", email = "[email protected]" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/oneryalcin/pyarallel"
Repository = "https://github.com/oneryalcin/pyarallel.git"
Documentation = "https://github.com/oneryalcin/pyarallel"
[build-system]
requires = ["hatchling>=1.17.1"]
build-backend = "hatchling.build"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["pyarallel"]
[tool.pytest.ini_options]
addopts = "-ra -q"
testpaths = [
"tests",
]
[tool.black]
line-length = 88
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[dependency-groups]
dev = [
"black>=24.10.0",
"isort>=5.13.2",
"mkdocs-git-revision-date-plugin>=0.3.2",
"mkdocs-material[imaging]>=9.5.50",
"mkdocs-minify-plugin>=0.8.0",
"mkdocstrings[python]>=0.27.0",
"mypy>=1.14.1",
"pytest>=8.3.4",
]