-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
75 lines (65 loc) · 1.77 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
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
71
72
73
74
75
[project]
name = "lbench"
license = "MIT"
license-files = ["LICENSE"]
readme = "README.md"
authors = [
{ name = "LINCC Frameworks", email = "lincc-frameworks-team@lists.lsst.org" }
]
description = "Benchmarking tools for LSDB"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
]
dynamic = ["version"]
requires-python = ">=3.10"
dependencies = [
"pytest",
"pytest-benchmark",
"typer",
"dask[complete]",
"dash",
"dash-bootstrap-components",
"pandas",
"tuna",
"memray"
]
[project.urls]
"Source Code" = "https://github.com/lincc-frameworks/lbench"
# On a mac, install optional dependencies with `pip install '.[dev]'` (include the single quotes)
[project.optional-dependencies]
dev = [
"black", # Used for static linting of files
"jupyter", # Clears output from Jupyter notebooks
"pre-commit", # Used to run checks before finalizing a git commit
"pytest-cov", # Used to report total code coverage
]
[build-system]
requires = [
"setuptools>=62", # Used to build and package the Python project
"setuptools_scm>=6.2", # Gets release version from git. Makes it available programmatically
]
build-backend = "setuptools.build_meta"
[project.scripts]
lbench = "lbench.cli.lbench:app"
[project.entry-points.pytest11]
lbench = "lbench.pytest"
[tool.setuptools_scm]
write_to = "src/lbench/_version.py"
[tool.pytest.ini_options]
markers = [
"lbench_memory: mark test to capture memory usage"
]
testpaths = [
"tests",
"src",
"docs",
]
addopts = "--doctest-modules --doctest-glob=*.rst"
[tool.black]
line-length = 110
[tool.coverage.run]
omit = ["src/lbench/_version.py"]