-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (43 loc) · 787 Bytes
/
pyproject.toml
File metadata and controls
50 lines (43 loc) · 787 Bytes
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
[tool.black]
line-length = 80
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pycln]
all = true
exclude = "__init__.py"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
ensure_newline_before_comments = true
[tool.poetry]
name = "aisite"
version = "0.2.0"
description = ""
authors = ["takshan <mrbrahma.rahul@gmail.com>"]
[tool.poetry.dependencies]
python = ">=3.9, <3.11"
jupyter = "^1.0.0"
black = "^22.3.0"
rdkit = "^2022.3.3"
autopep8 = "1.7.0"
Babel = "2.10.3"
cfgv = "3.3.1"
isort = "5.10.1"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"