-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
52 lines (48 loc) · 1.12 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyptv"
version = "0.3.1"
description = "Python GUI for the OpenPTV library `liboptv`"
authors = [
{ name = "Alex Liberzon", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">=3.8"
keywords = ["pyptv"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent"
]
dependencies = [
"chaco",
"enable",
"optv",
"PySide6",
"scikit-image",
"Pygments",
"six",
"imagecodecs",
"flowtracks",
"pandas",
"tables",
"pyparsing",
"tqdm",
"matplotlib",
"scipy"
]
[project.urls]
"Homepage" = "https://github.com/alexlib/pyptv"
[project.scripts]
pyptv = "pyptv.pyptv_gui:main"
[tool.black]
line-length = 88
target-version = ['py37']
include = '\.pyi?$'
extend-exclude = '''
# A regex preceded with ^/ will apply only to files and directories
# in the root of the project.
^/foo.py # exclude a file named foo.py in the root of the project (in addition to the defaults)
'''