-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
95 lines (86 loc) · 1.94 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "vstt"
description = "Visuomotor Serial Targeting Task (VSTT)"
readme = "README.md"
license = { text = "MIT" }
authors = [{ name = "Liam Keegan", email = "[email protected]" }]
requires-python = ">=3.7"
classifiers = [
"Topic :: Scientific/Engineering :: Bio-Informatics",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
dependencies = [
"click",
"numpy<2.0.0",
"packaging",
"pillow",
"psychopy",
"psychopy-sounddevice",
"qtpy",
"requests",
"shapely",
]
dynamic = ["version"]
[project.scripts]
vstt = "vstt.__main__:main"
[project.urls]
Github = "https://github.com/ssciwr/vstt"
Issues = "https://github.com/ssciwr/vstt/issues"
Documentation = "https://vstt.readthedocs.io/"
[project.optional-dependencies]
tests = [
"ascii-magic",
"keyboard",
"pyautogui",
"pytest",
"pytest-cov",
"pytest-randomly",
]
docs = [
"ipykernel",
"matplotlib",
"myst_parser",
"nbsphinx",
"pandoc",
"sphinx>=4.5.0",
"sphinx_rtd_theme>=1.0.0",
"ipywidgets",
]
[tool.setuptools.dynamic]
version = { attr = "vstt.__version__" }
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
extend-include = ["*.ipynb"]
[tool.ruff.lint]
select = [
# pycodestyle
"E",
# Pyflakes
"F",
# pyupgrade
"UP",
# flake8-bugbear
"B",
# flake8-simplify
"SIM",
# isort
"I",
]
ignore = ["E501"]
[tool.ruff.lint.isort]
force-single-line = true