-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
48 lines (41 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "AV_Spex"
version = "0.6.1"
description = "A Python project written for NMAAHC media conservation lab"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{ name="Eddy Colloton", email="[email protected]" },
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
dependencies = [
"ruamel.yaml==0.18.6",
"colorlog==6.7.0",
"art==6.1",
"lxml==5.2.0",
"pandas==2.2.2",
"plotly==5.23.0",
"toml==0.10.2",
"PyQt6==6.7.1"
]
[project.urls]
Repository = "https://github.com/JPC-AV/JPC_AV_videoQC"
[project.scripts]
av-spex = "AV_Spex.av_spex_the_file:main_cli"
[project.gui-scripts]
av-spex-gui = "AV_Spex.av_spex_the_file:main_gui"
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
include = ["AV_Spex*"] # package names should match these glob patterns (["*"] by default)
exclude = ["config", "logs", "tests"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[project.optional-dependencies]
test = ["pytest"]
[tool.pytest.ini_options]
testpaths = ["tests"]