Skip to content

Commit 89c7934

Browse files
authored
Merge pull request #150 from vilhelmprytz/master
setup.py: Add classifiers and python_requires
2 parents 2172261 + c5f6ef2 commit 89c7934

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

setup.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,17 @@ def dependencies(file):
1616
setup(
1717
name="halo",
1818
packages=find_packages(exclude=("tests", "examples")),
19-
version="0.0.30",
19+
version="0.0.31",
2020
license="MIT",
21+
classifiers=[
22+
"Programming Language :: Python",
23+
"Programming Language :: Python :: 3.5",
24+
"Programming Language :: Python :: 3.6",
25+
"Programming Language :: Python :: 3.7",
26+
"Programming Language :: Python :: 3.8",
27+
"Programming Language :: Python :: 3 :: Only",
28+
],
29+
python_requires=">=3.4",
2130
description="Beautiful terminal spinners in Python",
2231
long_description=long_description,
2332
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)