Skip to content

Commit 5c20fd5

Browse files
committed
setup.py needed to support 3.5 too
1 parent 0eb3893 commit 5c20fd5

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
here = Path(__file__).parent
55

66
# Get the long description from the README file
7-
with open(here / 'README.md', encoding='utf-8') as f:
7+
with (here / 'README.md').open(encoding='utf-8') as f:
88
long_description = f.read()
99

1010
setup(
@@ -21,7 +21,9 @@
2121
'Intended Audience :: Developers',
2222
'Topic :: Software Development :: Libraries',
2323
'License :: OSI Approved :: MIT License',
24+
'Programming Language :: Python :: 3.7',
2425
'Programming Language :: Python :: 3.6',
26+
'Programming Language :: Python :: 3.5',
2527
],
2628

2729
keywords='pythonanywhere api cloud web hosting',

0 commit comments

Comments
 (0)