-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 856 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 856 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "calcil"
version = "0.0.4"
dynamic = ["dependencies"]
#dynamic = ["version"]
authors = [
{ name="Ruiming Cao", email="rcao@berkeley.edu" }
]
description = "Berkeley Computational Imaging Library"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD-3-Clause",
"Operating System :: POSIX :: Linux",
]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[project.optional-dependencies]
dev = ["sphinx", "sphinx-rtd-theme"]
[project.urls]
"Homepage" = "https://github.com/rmcao/CalCIL"
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]
include = ["calcil*"]