Skip to content

Commit 49b8800

Browse files
authored
Merge pull request #70 from seratch/issue-47
Fix #47 by having metadata on the supported Python versions
2 parents e98691a + 016ae88 commit 49b8800

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

setup.py

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def find_version(*file_paths):
2626
version=find_version('slackeventsapi', 'version.py'),
2727
description='Python Slack Events API adapter',
2828
url='http://github.com/slackapi/python-slack-events-api',
29-
author='Slack Technologies',
29+
author='Slack Technologies, Inc.',
3030
author_email='[email protected]',
3131
license='MIT',
3232
packages=['slackeventsapi'],
@@ -36,4 +36,18 @@ def find_version(*file_paths):
3636
'requests',
3737
'six',
3838
],
39+
classifiers=[
40+
"Development Status :: 5 - Production/Stable",
41+
"Intended Audience :: Developers",
42+
"Topic :: Communications :: Chat",
43+
"Topic :: System :: Networking",
44+
"Topic :: Office/Business",
45+
"License :: OSI Approved :: MIT License",
46+
"Programming Language :: Python",
47+
"Programming Language :: Python :: 2.7",
48+
"Programming Language :: Python :: 3.5",
49+
"Programming Language :: Python :: 3.6",
50+
"Programming Language :: Python :: 3.7",
51+
"Programming Language :: Python :: 3.8",
52+
],
3953
zip_safe=False)

0 commit comments

Comments
 (0)