-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (33 loc) · 1.09 KB
/
pyproject.toml
File metadata and controls
41 lines (33 loc) · 1.09 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "spectrumlab"
version = "0.0.1"
description = "A pioneering unified platform designed to systematize and accelerate deep learning research in spectroscopy."
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Zhuo Yang", email = "yzachary1551@gmail.com" },
{ name = "Tianfan Fu", email = "futianfan@gmail.com" },
]
keywords = ["benchmark", "chemistry", "spectroscopy", "evaluation"]
dependencies = ["dotenv>=0.9.9", "openai>=1.93.0"]
[project.optional-dependencies]
dev = ["pytest>=7.4.0", "black>=23.0.0", "ruff>=0.1.0", "pre-commit>=4.2.0"]
test = ["pytest>=8.4.1", "pytest-asyncio>=1.1.0"]
[project.scripts]
spectrumlab = "spectrumlab.cli.main:main"
[tool.hatch.build.targets.wheel]
packages = ["spectrumlab"]
[tool.hatch.metadata]
allow-direct-references = true
[tool.black]
line-length = 120
skip-string-normalization = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"