-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 894 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 894 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
37
38
39
40
[build-system]
requires = ["setuptools>=64", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "beep"
version = "0.6.2"
description = "A binding energy evaluation platform and database for molecules on interstellar ice-grain mantels"
readme = "README.md"
license = {text = "BSD-3-Clause"}
authors = [
{name = "Stefan Vogt-Geisse", email = "stvogtgeisse@qcmmlab.com"},
{name = "Giulia M. Bovolenta"},
]
requires-python = ">=3.8"
dependencies = [
"matplotlib",
"scipy",
"tqdm",
"seaborn",
"pydantic>=1.10,<2",
"numpy<2",
"pandas>=1.4,<1.5",
"qcportal>=0.15,<0.50",
"qcelemental>=0.25,<0.26",
"networkx",
]
[project.optional-dependencies]
pre_exp = ["molsym"]
test = ["pytest"]
[project.scripts]
beep = "beep.cli:main"
[tool.setuptools.packages.find]
include = ["beep*"]
[tool.pytest.ini_options]
testpaths = ["tests"]