Skip to content

Commit 3c2899e

Browse files
committed
Merge pull request gitpython-developers#11 from hickford/patch-2
Clarify which Python versions are supported
2 parents 1c20ca4 + 0e0b7e2 commit 3c2899e

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

setup.py

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,5 +90,13 @@ def get_data_files(self):
9090
zip_safe=False,
9191
requires=('async (>=0.6.1)', 'smmap (>=0.8.0)'),
9292
install_requires=('async >= 0.6.1', 'smmap >= 0.8.0'),
93-
long_description = """GitDB is a pure-Python git object database"""
93+
long_description = """GitDB is a pure-Python git object database""",
94+
# See https://pypi.python.org/pypi?%3Aaction=list_classifiers
95+
classifiers=[
96+
# Specify the Python versions you support here. In particular, ensure
97+
# that you indicate whether you support Python 2, Python 3 or both.
98+
'Programming Language :: Python :: 2',
99+
'Programming Language :: Python :: 2.6',
100+
'Programming Language :: Python :: 2.7',
101+
],
94102
)

0 commit comments

Comments
 (0)