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 19945c3 commit 4938541Copy full SHA for 4938541
setup.py
@@ -30,9 +30,9 @@
30
'Intended Audience :: Developers',
31
'Intended Audience :: System Administrators',
32
'Programming Language :: Python :: 3',
33
- 'Programming Language :: Python :: 3.5',
34
'Programming Language :: Python :: 3.6',
35
'Programming Language :: Python :: 3.7',
+ 'Programming Language :: Python :: 3.8'
36
]
37
38
with io.open('LICENSE.txt', 'r', encoding='utf-8') as f:
@@ -48,5 +48,6 @@
48
install_requires=DEPENDENCIES,
49
extras_require=EXTRAS,
50
packages=find_packages(exclude=['tests', 'tests.*']),
51
- include_package_data=True
+ include_package_data=True,
52
+ python_requires=">=3.6,<3.9"
53
)
0 commit comments