-
Notifications
You must be signed in to change notification settings - Fork 32
/
pyproject.toml
54 lines (45 loc) · 1.23 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
[build-system]
requires = ["setuptools>=69"]
[project]
name = "oc-data"
description = "Code for generating adsorbate-catalyst input configurations"
readme = "README.md"
license = {text = "MIT License"}
version = "0.2.0"
requires-python = ">=3.9, <3.13"
dependencies = [
"scipy",
"numpy",
"ase==3.22.1",
"pymatgen",
"tqdm"
]
[tool.setuptools.packages]
find = {namespaces = false} # Disable implicit namespaces
[tool.setuptools_scm] # for version instrospection based on tags + commit
[project.urls]
repository = "http://github.com/Open-Catalyst-Project/Open-Catalyst-Dataset"
# include package data
[tool.setuptools.package-data]
"ocdata.databases.pkls" = ["*pkl"]
[project.optional-dependencies]
dev = ["pre-commit", "pytest", "pytest-cov", "coverage", "black"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-p no:warnings --import-mode importlib -x --quiet -rxXs --color yes"
filterwarnings = [
'ignore::UserWarning',
'ignore::FutureWarning',
'ignore::RuntimeWarning'
]
testpaths = ["tests"]
[tool.coverage.run]
source = ["ocdata"]
[tool.isort]
profile = 'black'
skip_gitignore = true
multi_line_output=3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88