-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (60 loc) · 1.43 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (60 loc) · 1.43 KB
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
69
[tool.poetry]
name = "regdpp"
version = "0.1.0"
description = "Implementation of Bayesian experimental design using regularized determinantal point processes"
authors = [
"Evgeny Lagutin <lagutin.em@phystech.edu>",
"Mikhail Kuimov"
]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/sverdoot/regularized-dpp"
repository = "https://github.com/sverdoot/regularized-dpp"
documentation = "https://github.com/sverdoot/regularized-dpp"
keywords = ["packaging", "dependency", "regdpp", "pyproject.toml"]
# Requirements
[tool.poetry.dependencies]
python = "^3.7, <3.11"
numpy = "^1.21.4"
pyyml = "^0.0.2"
black = "^21.12b0"
isort = "^5.10.1"
flake8 = "^4.0.1"
dppy = "^0.3.2"
seaborn = "^0.11.2"
tqdm = "^4.62.3"
scs = "^3.0.0"
cvxpy = "^1.1.17"
cvxopt = "^1.2.7"
Mosek = "^9.3.11"
PyYAML = "^6.0"
[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
)
'''