-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
71 lines (63 loc) · 1.31 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
69
70
71
[tool.poetry]
name = "flexsea"
version = "12.1.0"
description = ""
authors = ["Jared <jcoughlin@dephy.com>"]
readme = "README.md"
homepage = "https://github.com/DephyInc/Actuator-Package"
license = "MIT"
[tool.poetry.dependencies]
python = "^3.11"
semantic-version = "^2.10.0"
boto3 = "^1.26.110"
pyyaml = "^6.0"
pendulum = [
{version = "^2.1.2", python = "<3.12"},
{version = "^3.0.0", python = ">=3.12"}
]
pyudev = {version = "^0.24.1", platform = "linux"}
[tool.poetry.group.dev.dependencies]
black = ">=23.3,<25.0"
pytest = "^7.3.0"
pylint = "^2.17.2"
pre-commit = "^3.2.2"
nox = "^2022.11.21"
pandas = "^2.0.0"
seaborn = "^0.12.2"
numpy = "^1.24.2"
mypy = "^1.2.0"
ipython = "^8.12.0"
sphinx = "^7.0.1"
pydata-sphinx-theme = "^0.13.3"
sphinx-copybutton = "^0.5.2"
pylsl = "^1.16.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.messages_control]
max-line-length = 88
disable = [
"missing-docstring",
"invalid-name",
"too-many-public-methods",
"too-many-instance-attributes",
"too-many-arguments",
"too-few-public-methods",
"too-many-locals",
"too-many-statements",
"too-many-lines",
]
[tool.black]
line-length = 88
target-version = ['py311']
include = '\.pyi?$'
exclude = '''
/(
| \.git
| \.mypy_cache
| \.nox
| \.venv
| build
| dist
)/
'''