Skip to content

Commit ac3c67c

Browse files
committed
Add twine dependency for publishing
1 parent 7fbb57e commit ac3c67c

File tree

1 file changed

+22
-11
lines changed

1 file changed

+22
-11
lines changed

pyproject.toml

Lines changed: 22 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,33 @@
11
[project]
22
name = "vpselector"
3-
version = "0.1.0"
3+
version = "1.0.0"
44
description = "Visualize and interactively select time-series data from a pandas DataFrame."
55
readme = "README.md"
66
requires-python = ">=3.8"
7-
license = {file = "LICENSE.txt"}
8-
keywords = ["python", "dataframe", "pandas", "visualization", "data selection", "time-series data", "data tools", "data science", "data-driven engineering", "machine learning", "system identification"]
7+
license = { file = "LICENSE.txt" }
8+
keywords = [
9+
"python",
10+
"dataframe",
11+
"pandas",
12+
"visualization",
13+
"data selection",
14+
"time-series data",
15+
"data tools",
16+
"data science",
17+
"data-driven engineering",
18+
"machine learning",
19+
"system identification",
20+
]
921
authors = [
10-
{email = "manuel.galliker@gmx.ch"},
11-
{name = "Manuel Yves Galliker"}
22+
{ email = "manuel@galliker.tech" },
23+
{ name = "Manuel Yves Galliker" },
1224
]
1325
maintainers = [
14-
{name = "Manuel Yves Galliker", email = "manuel.galliker@gmx.ch"}
26+
{ name = "Manuel Yves Galliker", email = "manuel@galliker.tech" },
1527
]
1628
classifiers = [
1729
"Development Status :: 4 - Beta",
18-
"Programming Language :: Python"
30+
"Programming Language :: Python",
1931
]
2032

2133
dependencies = [
@@ -24,12 +36,11 @@ dependencies = [
2436
"matplotlib>=3.7.1",
2537
"seaborn>=0.11.1",
2638
"overrides>=7.3.1",
39+
"twine>=4.0.2",
2740
]
2841

2942
[project.optional-dependencies]
30-
format = [
31-
"black >= 23.3.0"
32-
]
43+
format = ["black >= 23.3.0"]
3344

3445
[project.urls]
35-
repository = "https://github.com/manumerous/vpselector"
46+
repository = "https://github.com/manumerous/vpselector"

0 commit comments

Comments
 (0)