-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (62 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
69 lines (62 loc) · 1.31 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "skala"
version = "1.1.1"
description = "Skala Exchange Correlation Functional"
authors = []
license-files = ["LICENSE.txt"]
readme = "README.md"
keywords = []
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 5 - Production/Stable",
]
requires-python = ">=3.10"
dependencies = [
"ase",
"azure-core",
"azure-identity",
"dftd3",
"e3nn",
"huggingface_hub",
"numpy",
"opt_einsum_fx",
"pyscf",
"qcelemental",
"torch"
]
optional-dependencies.dev = [
"pre-commit",
"pytest",
"pytest-cov",
]
optional-dependencies.doc = [
"myst-nb",
"sphinx",
"sphinx-book-theme",
"sphinx-design",
"sphinxcontrib-bibtex",
"sphinxcontrib-moderncmakedomain",
"sphinx-fortran",
]
urls.repository = "https://github.com/microsoft/skala"
urls.documentation = "https://microsoft.github.io/skala"
urls.homepage = "https://aka.ms/dft"
[tool.ruff]
target-version = "py311"
src = ["src"]
[tool.ruff.lint]
extend-select = [
"B", # flake8-bugbear
"D417", # undocumented-param in docstring
"UP", # pyupgrade
]
extend-ignore = [
"UP015", # redundant-open-modes
]
[tool.ruff.lint.isort]
detect-same-package = true
[tool.black]
line-length = 100