We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1991216 + b6b518b commit 789c6dcCopy full SHA for 789c6dc
setup.py
@@ -205,6 +205,11 @@ def initialize_options(self):
205
]
206
data_files.extend(man_pages)
207
208
+classifiers = [
209
+ 'Programming Language :: Python :: 2',
210
+ 'Programming Language :: Python :: 3',
211
+]
212
+
213
install_requires = [
214
'pygments',
215
'requests',
@@ -270,6 +275,7 @@ def initialize_options(self):
270
275
url="http://www.bpython-interpreter.org/",
271
276
long_description="""bpython is a fancy interface to the Python
272
277
interpreter for Unix-like operating systems.""",
278
+ classifiers=classifiers,
273
279
install_requires=install_requires,
274
280
extras_require=extras_require,
281
tests_require=tests_require,
0 commit comments