-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpyproject.toml
35 lines (30 loc) · 1.05 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
[tool.poetry]
name = "sport-activities-features-gui"
version = "0.4.0"
description = "GUI for sport-activities-features package"
authors = [
"otiv33 <[email protected]>",
"garyjellyarms <[email protected]>",
"Mtvrt123 <[email protected]>",
"firefly-cpp <[email protected]>"
]
keywords = ['computational intelligence', 'cycling', 'data mining', 'datasets', 'gpx', 'gui', 'optimization', 'sport activities', 'tcx']
homepage = "https://github.com/firefly-cpp/sport-activities-features-gui"
repository = "https://github.com/firefly-cpp/sport-activities-features-gui"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
sport-activities-features = "^0.5.0"
QtAwesome = "^1.2.1"
PyQt6 = "^6.5.1"
sip = "^6.7.9"
opencv-python-headless = "^4.8.0.74"
[tool.poetry.dev-dependencies]
pytest = "^6.2.5"
[tool.poetry.scripts]
sport-activities-features-gui = 'sport_activities_features_gui.main:main'
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "./tests"