-
Notifications
You must be signed in to change notification settings - Fork 36
/
pyproject.toml
70 lines (57 loc) · 1.84 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
[project]
name = "boris-behav-obs"
version = "8.27.10"
description = "BORIS - Behavioral Observation Research Interactive Software"
authors = [{ name="Olivier Friard", email="[email protected]" }]
readme = "README.rst"
license = { file = "LICENSE.TXT" }
requires-python = ">=3.12"
classifiers=[
"Topic :: Scientific/Engineering",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
dependencies = [
"exifread>=3.0.0",
"numpy>=1.26.4",
"matplotlib>=3.3.3",
"pandas>=2.2.2",
"tablib[html, ods, xls, xlsx, pandas, cli]>=3",
"pyqt5>=5.15",
"pyreadr",
]
[project.optional-dependencies]
dev = ["black", "ruff", "pytest", "pytest-cov"]
[project.urls]
Homepage = "http://www.boris.unito.it"
Documentation = "https://boris.readthedocs.io/en/latest/"
Change_log = "https://github.com/olivierfriard/BORIS/wiki/BORIS-change-log-v.8"
Source_code = "https://github.com/olivierfriard/BORIS"
Issues = "https://github.com/olivierfriard/BORIS/issues"
[project.scripts]
boris-behav-obs = "boris:main"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.distutils.bdist_wheel]
universal = true
[tool.black]
line-length = 140
[tool.ruff]
line-length = 140
exclude = ["*_ui.py", "mpv*"]
[tool.bumpver]
current_version = "8.27.10"
version_pattern = "MAJOR.MINOR.PATCH"
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"',
]