Skip to content
This repository was archived by the owner on Aug 11, 2020. It is now read-only.

Commit bd94145

Browse files
committed
add support for python 2.7
1 parent 3f688df commit bd94145

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
'Intended Audience :: Developers',
2222
'Topic :: Software Development :: Libraries',
2323
'License :: OSI Approved :: ISC License (ISCL)',
24-
'Programming Language :: Python :: 3',
24+
'Programming Language :: Python :: 2.7',
2525
'Programming Language :: Python :: 3.4',
2626
'Programming Language :: Python :: 3.5',
2727
'Programming Language :: Python :: 3.6',
2828
],
2929
keywords='paperspace api development library',
3030
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
31-
install_requires=['boto3', 'botocore', 'requests'],
32-
)
31+
install_requires=['requests[security]', 'boto3', 'botocore'],
32+
)

0 commit comments

Comments
 (0)