Skip to content

Commit

Permalink
Merge pull request #150 from vilhelmprytz/master
Browse files Browse the repository at this point in the history
setup.py: Add classifiers and python_requires
  • Loading branch information
manrajgrover authored Nov 9, 2020
2 parents 2172261 + c5f6ef2 commit 89c7934
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,17 @@ def dependencies(file):
setup(
name="halo",
packages=find_packages(exclude=("tests", "examples")),
version="0.0.30",
version="0.0.31",
license="MIT",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
],
python_requires=">=3.4",
description="Beautiful terminal spinners in Python",
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit 89c7934

Please sign in to comment.