-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
54 lines (47 loc) · 1018 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
44
45
46
47
48
49
50
51
52
53
54
[tool.poetry]
name = "materials"
version = "0.2.0"
description = "Materials bank to store relevant information"
authors = ["Gleb Khaykin <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.0.4"
commitizen = "^2.42.0"
detect-secrets = "^1.4.0"
black = "^23.1.0"
flake8 = "^6.0.0"
[tool.poetry.group.research.dependencies]
ipykernel = "^6.21.3"
ipywidgets = "^8.0.4"
[tool.black]
line-length = 100
exclude = '''
/(
\.git
| \.venv
| build
| dist
)/
'''
[tool.isort]
src_paths = ["materials"]
profile = "black"
line_length = 100
multi_line_output = 3
order_by_type = true
reverse_relative = true
from_first = false
[tool.semantic_release]
version_variable = [
"pyproject.toml:version",
]
branch = "master"
upload_to_pypi = false
upload_to_release = false
commit_subject = "chore(release): v{version} [skip ci]"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"