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.
1 parent 98a8269 commit a9c88a1Copy full SHA for a9c88a1
setup.py
@@ -205,6 +205,10 @@ def initialize_options(self):
205
]
206
data_files.extend(man_pages)
207
208
+classifiers = [
209
+ 'Programming Language :: Python :: 3',
210
+]
211
+
212
install_requires = [
213
'pygments',
214
'requests',
@@ -270,6 +274,7 @@ def initialize_options(self):
270
274
url="http://www.bpython-interpreter.org/",
271
275
long_description="""bpython is a fancy interface to the Python
272
276
interpreter for Unix-like operating systems.""",
277
+ classifiers=classifiers,
273
278
install_requires=install_requires,
279
extras_require=extras_require,
280
tests_require=tests_require,
0 commit comments