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 0eb3893 commit 5c20fd5Copy full SHA for 5c20fd5
setup.py
@@ -4,7 +4,7 @@
4
here = Path(__file__).parent
5
6
# Get the long description from the README file
7
-with open(here / 'README.md', encoding='utf-8') as f:
+with (here / 'README.md').open(encoding='utf-8') as f:
8
long_description = f.read()
9
10
setup(
@@ -21,7 +21,9 @@
21
'Intended Audience :: Developers',
22
'Topic :: Software Development :: Libraries',
23
'License :: OSI Approved :: MIT License',
24
+ 'Programming Language :: Python :: 3.7',
25
'Programming Language :: Python :: 3.6',
26
+ 'Programming Language :: Python :: 3.5',
27
],
28
29
keywords='pythonanywhere api cloud web hosting',
0 commit comments