-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
68 lines (59 loc) · 1.36 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
56
57
58
59
60
61
62
63
64
65
66
67
68
[tool.poetry]
name = "robustpca"
version = "0.1.0"
description = "Robust PCA"
authors = [
"Evgeny Lagutin <lagutin.em@phystech.edu>",
"Ilya Dubovitsky <Ilya.Dubovitskii@skoltech.ru>"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/sverdoot/robust-pca"
repository = "https://github.com/sverdoot/robust-pca"
documentation = "https://github.com/sverdoot/robust-pca"
keywords = ["packaging", "dependency", "regdpp", "pyproject.toml"]
# Requirements
[tool.poetry.dependencies]
python = "~3.9"
numpy = "^1.21.4"
pyyml = "^0.0.2"
black = "^21.12b0"
isort = "^5.10.1"
flake8 = "^4.0.1"
pandas = "^1.3.5"
dppy = "^0.3.2"
seaborn = "^0.11.2"
tqdm = "^4.62.3"
cvxpy = "^1.1.17"
opencv-python = "^4.5.4"
cvxopt = "^1.2.7"
[tool.poetry.scripts]
# poetry = "infer_pyproject.cli:main"
# [build-system]
# requires = [
# "setuptools >= 35.0.2",
# "setuptools_scm >= 2.0.0, <3"
# ]
# build-backend = "setuptools.build_meta"
[tool.black]
line-length = 100
target_version = ['py39']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''