-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (50 loc) · 1.76 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
[project]
name = "smartmultiprocessing" # Required
version = "0.0.1" # Required
description = "Memory-managed parallel computing for medium-sized computational tasks." # Optional
readme = "README.md" # Optional
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["multiprocessing", "parallel", "threading", "development"] # Optional
authors = [
{name = "Emily Hunt", email = "[email protected]" } # Optional
]
maintainers = [
{name = "Emily Hunt", email = "[email protected]" } # Optional
]
classifiers = [ # Optional
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
# "Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"psutil>=5.0,<6.0",
]
[project.optional-dependencies]
dev = ["check-manifest", "pytest", "mkdocs-material", "mkdocstrings[python]>=0.18"]
docs = ["mkdocs-material", "mkdocstrings[python]>=0.18"] # For building docs on GitHub
test = ["pytest"]
[project.urls] # Optional
"Homepage" = "https://smartmultiprocessing.org"
"Bug Reports" = "https://github.com/emilyhunt/smartmultiprocessing/issues"
"Source" = "https://github.com/emilyhunt/smartmultiprocessing"
# [tool.setuptools]
# package-data = {"sample" = ["*.dat"]}
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]
[build-system]
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 88