-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.05 KB
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
[build-system]
requires = ["setuptools", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[project]
name = "distributed_heterogeneous"
authors = [
# TODO: authors
]
description = "Heterogeneous Cluster extension to Dask Distributed"
readme = "README.md"
requires-python = ">=3.9"
keywords = ["distributed", "heterogeneous"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"distributed",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/coiled/distributed-heterogeneous"
Source = "https://github.com/coiled/distributed-heterogeneous"
[tool.setuptools.packages.find]
exclude = ["*tests*"]
namespaces = false
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-v"
testpaths = [
"distributed_heterogeneous/tests"
]
timeout = 300
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "distributed_heterogeneous/_version.py"
versionfile_build = "distributed_heterogeneous/_version.py"
tag_prefix = ""
parentdir_prefix = "distributed-heterogeneous"