-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
43 lines (38 loc) · 1010 Bytes
/
pyproject.toml
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
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel", "reentry>=1.3.0"]
[tool.isort]
skip = ["venv"]
# Force imports to be sorted by module, independent of import type
force_sort_within_sections = true
# Group first party and local folder imports together
no_lines_before = ["LOCALFOLDER"]
# Configure isort to work without access to site-packages
known_first_party = ["aiida_crystal17"]
# Settings for Black compatibility
profile = "black"
[tool.check-manifest]
ignore = [
".DS_Store", "*.pyc", "__pycache__",
"aiida_crystal17/tests/test_*/*",
"cry17_scripts",
"cry17_scripts/*",
"docs",
"docs/*",
".vscode",
".vscode/*",
".condarc",
".coveragerc",
".flake8",
".gitchangelog.rc",
".pre-commit",
".pre-commit-config.yaml",
".pre-commit/check_version.py",
".readthedocs.yml",
".style.yapf",
"clean.sh",
"conda_dev_env.yml",
"conftest.py",
"doc8.ini",
"pytest.ini"
]