We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 1c20ca4 + 0e0b7e2 commit 3c2899eCopy full SHA for 3c2899e
setup.py
@@ -90,5 +90,13 @@ def get_data_files(self):
90
zip_safe=False,
91
requires=('async (>=0.6.1)', 'smmap (>=0.8.0)'),
92
install_requires=('async >= 0.6.1', 'smmap >= 0.8.0'),
93
- long_description = """GitDB is a pure-Python git object database"""
+ 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
+ ],
102
)
0 commit comments