-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 896 Bytes
/
pyproject.toml
File metadata and controls
41 lines (36 loc) · 896 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", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "concurrent_collections"
version = "2.1.0"
description = "A brief description of concurrent-collections"
authors = [{ name = "Alessio Lombardi", email = "work@alelom.com" }]
license = { file = "MIT" }
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
]
urls = { "Homepage" = "https://github.com/alelom/python-concurrentCollections" }
[tool.setuptools]
packages = ["concurrent_collections"]
[dependency-groups]
dev = [
"pytest>=7.0.1",
"pytest-cov>=4.0.0",
]
build = [
"build>=0.9.0",
"twine>=3.8.0",
]
test = [
"pytest>=7.0.1",
"pytest-cov>=4.0.0",
]
# Pytest configuration
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "--cache-clear"