-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
46 lines (43 loc) · 994 Bytes
/
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
[project]
name = "vpselector"
version = "1.0.2"
description = "Visualize and interactively select time-series data from a pandas DataFrame."
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE.txt" }
keywords = [
"python",
"dataframe",
"pandas",
"visualization",
"data selection",
"time-series data",
"data tools",
"data science",
"data-driven engineering",
"machine learning",
"system identification",
]
authors = [
{ email = "manuel@galliker.tech" },
{ name = "Manuel Yves Galliker" },
]
maintainers = [
{ name = "Manuel Yves Galliker", email = "manuel@galliker.tech" },
]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
]
dependencies = [
"pandas >= 1.1.5",
"PyQt5>=5.15.0",
"matplotlib>=3.7.1",
"seaborn>=0.11.1",
"overrides>=7.3.1",
"twine>=4.0.2",
]
[project.optional-dependencies]
format = ["black >= 23.3.0"]
[project.urls]
repository = "https://github.com/manumerous/vpselector"