1- from setuptools import setup
21import os
32import re
43
4+ from setuptools import setup
5+
56here = os .path .abspath (os .path .dirname (__file__ ))
67
78# Read the version number from a source file.
@@ -30,7 +31,7 @@ def find_version(*file_paths):
3031 author_email = 'opensource@slack.com' ,
3132 license = 'MIT' ,
3233 packages = ['slackeventsapi' ],
33- python_requires = ">=3.6 " ,
34+ python_requires = ">=3.7 " ,
3435 long_description_content_type = 'text/x-rst' ,
3536 long_description = long_description ,
3637 install_requires = [
@@ -45,12 +46,12 @@ def find_version(*file_paths):
4546 'Topic :: Office/Business' ,
4647 'License :: OSI Approved :: MIT License' ,
4748 'Programming Language :: Python' ,
48- 'Programming Language :: Python :: 3.6' ,
4949 'Programming Language :: Python :: 3.7' ,
5050 'Programming Language :: Python :: 3.8' ,
5151 'Programming Language :: Python :: 3.9' ,
5252 'Programming Language :: Python :: 3.10' ,
5353 'Programming Language :: Python :: 3.11' ,
5454 'Programming Language :: Python :: 3.12' ,
55+ 'Programming Language :: Python :: 3.13' ,
5556 ],
5657 zip_safe = False )
0 commit comments