Skip to content

Commit 789c6dc

Browse files
authored
Merge pull request bpython#709 from Siecje/caniusepython3
Add Python3 classifier
2 parents 1991216 + b6b518b commit 789c6dc

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -205,6 +205,11 @@ def initialize_options(self):
205205
]
206206
data_files.extend(man_pages)
207207

208+
classifiers = [
209+
'Programming Language :: Python :: 2',
210+
'Programming Language :: Python :: 3',
211+
]
212+
208213
install_requires = [
209214
'pygments',
210215
'requests',
@@ -270,6 +275,7 @@ def initialize_options(self):
270275
url="http://www.bpython-interpreter.org/",
271276
long_description="""bpython is a fancy interface to the Python
272277
interpreter for Unix-like operating systems.""",
278+
classifiers=classifiers,
273279
install_requires=install_requires,
274280
extras_require=extras_require,
275281
tests_require=tests_require,

0 commit comments

Comments
 (0)