Skip to content

Commit f976aba

Browse files
committed
[setup.py] update Py version classifiers, minor src fmt
remove Py2.7, Py < 3.6, add Py 3.7, 3.8, 3.9
1 parent 68c9ac0 commit f976aba

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

setup.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,9 @@ def version_read():
5454
packages=find_packages("lib"),
5555
package_dir={"": "lib"},
5656
install_requires=["commandlines", "standardstreams", "fontTools"],
57-
entry_points={"console_scripts": ["font-line = fontline.app:main"],},
57+
entry_points={
58+
"console_scripts": ["font-line = fontline.app:main"],
59+
},
5860
keywords="font,typeface,fonts,spacing,line spacing,spaces,vertical metrics,metrics,type",
5961
include_package_data=True,
6062
classifiers=[
@@ -63,13 +65,11 @@ def version_read():
6365
"License :: OSI Approved :: MIT License",
6466
"Operating System :: OS Independent",
6567
"Programming Language :: Python",
66-
"Programming Language :: Python :: 2",
67-
"Programming Language :: Python :: 2.7",
6868
"Programming Language :: Python :: 3",
69-
"Programming Language :: Python :: 3.3",
70-
"Programming Language :: Python :: 3.4",
71-
"Programming Language :: Python :: 3.5",
7269
"Programming Language :: Python :: 3.6",
70+
"Programming Language :: Python :: 3.7",
71+
"Programming Language :: Python :: 3.8",
72+
"Programming Language :: Python :: 3.9",
7373
"Topic :: Software Development :: Libraries :: Python Modules",
7474
],
7575
)

0 commit comments

Comments
 (0)