-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (25 loc) · 803 Bytes
/
pyproject.toml
File metadata and controls
33 lines (25 loc) · 803 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
# Choosing a build backend:
[build-system]
requires = ["setuptools", "cmake", "scikit-build", "ninja", "pybind11"]
build-backend = "setuptools.build_meta"
[project]
name = "pyclassify"
version = "0.0.1"
description = "Project for the Development Tools for Scientific Computing course"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Lorenzo Tomada", email = "[email protected]" },
{ name = "Gaspare Li Causi", email = "[email protected]" }
]
dynamic = ["dependencies"]
[tool.scikit-build]
build-dir = "build"
[tool.setuptools.packages.find]
where = ["src"]
exclude = ["scripts", "tests", "shell", "experiments"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[project.optional-dependencies]
test = ["pytest"]