Skip to content

Commit a9c88a1

Browse files
committed
Add Python3 classifier
Motivated by caniusepython3[0] reporting bpython doesn't support Python3. ```shell $ caniusepython3 --projects bpython ``` 0: https://pypi.python.org/pypi/caniusepython3
1 parent 98a8269 commit a9c88a1

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

setup.py

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

208+
classifiers = [
209+
'Programming Language :: Python :: 3',
210+
]
211+
208212
install_requires = [
209213
'pygments',
210214
'requests',
@@ -270,6 +274,7 @@ def initialize_options(self):
270274
url="http://www.bpython-interpreter.org/",
271275
long_description="""bpython is a fancy interface to the Python
272276
interpreter for Unix-like operating systems.""",
277+
classifiers=classifiers,
273278
install_requires=install_requires,
274279
extras_require=extras_require,
275280
tests_require=tests_require,

0 commit comments

Comments
 (0)