-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 918 Bytes
/
Copy pathpyproject.toml
File metadata and controls
50 lines (44 loc) · 918 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
41
42
43
44
45
46
47
48
49
50
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "camdweb"
description = "CAMd web-apps"
version = "24.1.0"
readme = "README.rst"
authors = [
{ name="CAMd web-team", email="jjmo@dtu.dk" },
]
dependencies = [
"bottle",
"textual",
"plotly",
"ase",
"asr"]
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
]
[project.scripts]
camd-web = "camdweb.cli:main"
camd-web-coverage = "camdweb.tools:coverage"
[project.optional-dependencies]
test = [
"flake8",
"mypy",
"coverage",
"pytest",
"boddle"]
optimade = [
"lark"]
[tool.mypy]
packages = "camdweb"
ignore_missing_imports = true
disallow_untyped_defs = false
[tool.coverage.run]
source = ['camdweb']
[tool.coverage.report]
exclude_also = [
"if __name__ == .__main__.:",
"@(abc\\.)?abstractmethod",
"if TYPE_CHECKING:"]