Skip to content

Commit 05f2ea4

Browse files
committed
Add some missing info to the project file.
This was based on a review of PR #52 from @lucc, reviewed by @dbarnett, that I didn't end up using as I set up the v1.0 build. With this change, I've pulled in the things in @lucc's PR that weren't there already.
1 parent 43223ae commit 05f2ea4

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

pyproject.toml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,9 @@
1-
[build-system]
2-
requires = ["flit_core >= 3.4"]
3-
build-backend = "flit_core.buildapi"
4-
51
[project]
62
name = "vobject"
73
description = "Python Calendar and Address object management"
84
readme = "README.md"
95
license = {file = "LICENSE-2.0.txt"}
10-
keywords = []
6+
keywords = ["vobject", "icalendar", "vcard", "ics", "vcf", "hcalendar"]
117

128
dynamic = ["version"]
139
dependencies = [
@@ -17,10 +13,11 @@ dependencies = [
1713
]
1814
requires-python = ">= 3.8"
1915
authors = [
16+
{name = "Jeffrey Harris", email = "jeffrey@osafoundation.org"},
2017
]
2118

2219
maintainers = [
23-
{name = "David Arnold", email = "davida@pobox.com"}
20+
{name = "David Arnold", email = "davida@pobox.com"},
2421
]
2522

2623
classifiers = [
@@ -42,7 +39,8 @@ classifiers = [
4239
]
4340

4441
[project.urls]
45-
homepage = "http://py-vobject.github.io/"
42+
homepage = "https://py-vobject.github.io/"
43+
repository = "https;//github.com/py-vobject/vobject"
4644
source = "https://github.com/py-vobject/vobject"
4745
download = "https://github.com/py-vobject/vobject/releases"
4846
issues = "https://github.com/py-vobject/vobject/issues"
@@ -62,6 +60,10 @@ dev = [
6260
"sphinx",
6361
]
6462

63+
[build-system]
64+
requires = ["flit_core >= 3.4"]
65+
build-backend = "flit_core.buildapi"
66+
6567
[tool.flit.module]
6668
name = "vobject"
6769

0 commit comments

Comments
 (0)