-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
95 lines (84 loc) · 1.91 KB
/
pyproject.toml
File metadata and controls
95 lines (84 loc) · 1.91 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "httk-web"
version = "0.1.0"
description = "Web and static-site tooling for httk v2"
readme = "README.md"
license = "AGPL-3.0+"
requires-python = ">=3.11"
authors = [{ name = "Rickard Armiento", email = "gitcommits@armiento.net" }]
dependencies = [
"httk-core @ git+https://github.com/httk/httk-core",
"jinja2>=3.1",
"markdown>=3.5",
"PyYAML>=6.0",
"docutils>=0.20",
"starlette>=0.37",
"uvicorn>=0.30",
"python-multipart>=0.0.9"
]
keywords = [
"Materials Discovery",
"Materials Informatics",
"Materials Science",
"Machine Learning",
]
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"httpx>=0.27",
"black",
"ruff",
"isort",
"pyright",
"mypy"
]
docs = [
"sphinx",
"furo",
"myst-parser",
"myst-nb",
"sphinx-autodoc-typehints",
"sphinx-copybutton",
"sphinx-autoapi"
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.isort]
profile = "black"
[tool.ruff]
target-version = "py311"
src = ["src", "examples"]
[tool.black]
target-version = ["py311"]
line-length = 120
skip-string-normalization = true
[tool.pyright]
pythonVersion = "3.11"
include = ["src", "examples"]
reportMissingImports = true
extraPaths = []
[tool.mypy]
python_version = "3.11"
files = ["src", "examples"]
mypy_path = ["src"]
namespace_packages = true
explicit_package_bases = true
warn_unused_ignores = true
[[tool.mypy.overrides]]
module = ["yaml", "markdown", "docutils", "docutils.*"]
ignore_missing_imports = true