-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.28 KB
/
pyproject.toml
File metadata and controls
48 lines (43 loc) · 1.28 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "cohere_core"
version = "4.5.2"
authors = [
{ name="Barbara Frosik", email="bfrosik@anl.gov" },
{ name="Ross Harder", email="rharder@anl.gov" }
]
description = "cohere reconstruction tools"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license-files = ["LICENSE"]
dependencies = ['torch; sys_platform == "darwin"',
'torchvision; sys_platform == "darwin"',
'torchaudio; sys_platform == "darwin"',
'scikit-learn',
'tifffile',
'psutil',
'tqdm',
'matplotlib',
'scipy',
'sphinx',
'sphinx-pyproject',
'numpy>=2.0'
]
[tool.setuptools.packages.find]
where = ["src"]
[project.urls]
Homepage = "https://github.com/AdvancedPhotonSource/cohere"
Documentation = "https://readthedocs.org"
Repository = "https://github.com//AdvancedPhotonSource/cohere.git"
[tool.sphinx-pyproject]
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.napoleon",
'sphinx.ext.intersphinx',
]