-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
55 lines (50 loc) · 1.24 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
55
[tool.poetry]
name = "domid"
version = "0.1.0"
description = "Deep unsupervised clustering algorithms for domain identification."
authors = ["agisga <[email protected]>"]
[tool.poetry.dependencies]
python = "^3.10.4"
tensorboard = "^2.6"
tensorboardX = "^2.5.1"
pandas = "^1.5.2"
scipy = "^1.9.3"
scikit-learn = "^1.1.3"
tabulate = "^0.9.0"
ray = "^2.1.0"
opencv-python = "^4.6.0.66"
grpcio = "^1.54.0"
networkx = "^3.2.1"
rich = "^13.7.0"
domainlab = "^0.6.1"
setuptools = "^69.5.1"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
jupyterlab = "^4.1.4"
ipywidgets = "^8.1.2"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 120
target-version = ['py310']
include = '\.pyi?$'
# 'extend-exclude' excludes files or directories in addition to the defaults
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
(
^/_build/*
| ^/docs/*
| ^/DomainLab/*
| ^/notebooks/*
| ^/runs/*
| ^/zout/*
| ^/zoutput/*
)
'''
[tool.isort]
profile = "black"
src_paths = ["domid"]
line_length = 120 # match black above
extend_skip = ["_build", "docs", "DomainLab", "notebooks", "runs", "zout", "zoutput"]