Skip to content

Commit d22f417

Browse files
committed
" instead of '
1 parent dbf9ebb commit d22f417

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
11
from setuptools import setup
22

33

4-
PACKAGE_NAME = 'pyannotating'
4+
PACKAGE_NAME = "pyannotating"
55

66
VERSION = '1.2.0'
77

8-
with open('README.md') as readme_file:
8+
with open("README.md") as readme_file:
99
LONG_DESCRIPTION = readme_file.read()
1010

1111
setup(
1212
name=PACKAGE_NAME,
1313
description="Library of annotations for humans",
1414
long_description=LONG_DESCRIPTION,
1515
long_description_content_type="text/markdown",
16-
license_files = ('LICENSE',),
16+
license_files = ("LICENSE",),
1717
license="GNU General Public License v3.0",
1818
version=VERSION,
1919
url="https://github.com/TheArtur128/Pyannotating",
2020
download_url=f"https://github.com/TheArtur128/Pyannotating/archive/refs/tags/v{VERSION}.zip",
2121
author="Arthur",
2222
author_email="s9339307190@gmail.com",
23-
python_requires='>=3.11',
23+
python_requires=">=3.11",
2424
classifiers=["Programming Language :: Python :: 3.11"],
2525
keywords=["library", "annotations", "generation", "templating", "annotations", "informing", "code-readability"],
2626
py_modules=[PACKAGE_NAME]

0 commit comments

Comments
 (0)