Skip to content

Commit f32d3d5

Browse files
committed
reformat
1 parent 7ef0b71 commit f32d3d5

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

setup.py

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -22,26 +22,26 @@
2222
# for older versions
2323
import tomli as tomllib
2424

25-
with open("pyproject.toml", "rb") as f:
25+
with open('pyproject.toml', 'rb') as f:
2626
pyproject = tomllib.load(f)
27-
project = pyproject["project"]
27+
project = pyproject['project']
2828

2929
from setuptools import find_packages, setup
3030

3131
from appium.common.helper import library_version
3232

3333
setup(
34-
name=project["name"],
34+
name=project['name'],
3535
version=library_version(),
36-
description=project["description"],
37-
keywords=project["keywords"],
38-
author=project["authors"][0]["name"],
39-
author_email=project["authors"][0]["email"],
40-
maintainer=project["maintainers"][0]["name"],
41-
url=project["urls"]["Homepage"],
36+
description=project['description'],
37+
keywords=project['keywords'],
38+
author=project['authors'][0]['name'],
39+
author_email=project['authors'][0]['email'],
40+
maintainer=project['maintainers'][0]['name'],
41+
url=project['urls']['Homepage'],
4242
package_data={'appium': ['py.typed']},
4343
packages=find_packages(include=['appium*']),
44-
license=project["license"]["text"],
44+
license=project['license']['text'],
4545
classifiers=project['classifiers'],
4646
install_requires=project['dependencies'],
4747
)

0 commit comments

Comments
 (0)