Skip to content

Commit 97172e5

Browse files
committed
update review, metadatas
1 parent f32d3d5 commit 97172e5

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
lines changed

pyproject.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,15 @@
22
name = "Appium-Python-Client"
33
description = "Python client for Appium"
44
readme = "README.md"
5-
license = {text = "Apache 2.0"}
5+
license = "Apache-2.0"
6+
license-files = ["LICENSE"]
67
authors = [
78
{name = "Isaac Murchie", email = "[email protected]"},
89
]
910
maintainers = [
10-
{name = "Kazuaki Matsuo, Mykola Mokhnach, Mori Atsushi"},
11+
{name = "Kazuaki Matsuo"},
12+
{name = "Mykola Mokhnach"},
13+
{name = "Mori Atsushi"},
1114
]
1215
keywords = ["appium", "selenium", "python client", "mobile automation"]
1316
classifiers = [
@@ -31,6 +34,8 @@ dynamic = ["version"]
3134
[project.urls]
3235
Homepage = "http://appium.io/"
3336
Repository = "https://github.com/appium/python-client"
37+
Issues = "https://github.com/appium/python-client/issues"
38+
Changelog = "https://github.com/appium/python-client/blob/master/CHANGELOG.rst"
3439

3540
[tool.uv]
3641
dev-dependencies = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
keywords=project['keywords'],
3838
author=project['authors'][0]['name'],
3939
author_email=project['authors'][0]['email'],
40-
maintainer=project['maintainers'][0]['name'],
40+
maintainer=", ".join([maintainer["name"] for maintainer in project['maintainers']]),
4141
url=project['urls']['Homepage'],
4242
package_data={'appium': ['py.typed']},
4343
packages=find_packages(include=['appium*']),

0 commit comments

Comments
 (0)