-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
74 lines (66 loc) · 1.76 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
[tool.poetry]
name = "yupi"
version = "0.12.5"
description = "A package for tracking and analysing objects trajectories"
authors = [
"Gustavo Viera-López <gvieralopez@gmail.com>",
"Alfredo Reyes <areyes@fisica.uh.cu>",
"Jorge Morgado <jorge.morgadov@gmail.com>",
"Ernesto Altshuler <ealtshuler@fisica.uh.cu>"
]
license = "MIT"
readme = "README.md"
repository = "https://github.com/yupidevs/yupi"
documentation = "https://yupi.readthedocs.io"
keywords = ["trajectory", "analysis", "tracking"]
[tool.poetry.dependencies]
python = "^3.7"
opencv-python = ">=4.4.0"
numpy = ">=1.16.5"
nudged = ">=0.3.1"
matplotlib = ">=3.2.0"
[tool.poetry.dev-dependencies]
pytest = ">=6.2.2"
pylint = ">=2.7.2"
isort = ">=5.10.1"
black = ">=22.3.0"
[tool.isort]
profile = "black"
known_first_party = ["yupi"]
[tool.black]
target-version = ["py37"]
[tool.pylint."MESSAGES CONTROL"]
extension-pkg-whitelist = ["cv2"]
max-line-length = 88
good-names = [
"x", # Data from x axis
"y", # Data from y axis
"z", # Data from z axis
"t", # Time vector
"r", # Position vector
"v", # Velocity vector
"a", # Acceleration vector
"dt", # Time spacing (delta time)
"i", # Usual iteration variable
"j", # Usual iteration variable
"k", # Usual iteration variable
"ax", # Matplotlib Axes
"T", # Total time
"N" # Number of trajectories
]
[tool.bumpver]
current_version = "0.12.5"
version_pattern = "MAJOR.MINOR.PATCH[PYTAGNUM]"
commit = false
tag = false
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = [
'current_version = "{version}"',
'version = "{version}"',
]
"yupi/__init__.py" = ['__version__ = "{version}"']
"docs/source/conf.py" = ['release = "{version}"']
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"