Skip to content

Commit f8fd4c7

Browse files
authored
Merge pull request #18 from singular-labs/classifiers
Add classifiers to setup file to show support for py2 and py3
2 parents 6a6908a + 8561dbd commit f8fd4c7

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
@@ -26,5 +26,13 @@
2626
'pytz',
2727
'retrying',
2828
],
29-
extras_require={':python_version == "2.7"': ['futures']}
29+
extras_require={':python_version == "2.7"': ['futures']},
30+
classifiers=[
31+
'Programming Language :: Python',
32+
'Programming Language :: Python :: 2.7',
33+
'Programming Language :: Python :: 3',
34+
'Programming Language :: Python :: 3.6',
35+
'Programming Language :: Python :: 3.7',
36+
'Programming Language :: Python :: 3.8',
37+
]
3038
)

0 commit comments

Comments
 (0)