Skip to content

Commit fa4d3d7

Browse files
authored
Install fix & update for Python3
Fixes the issue with crypto_compare/apis directory not being installed properly when using pip. Prefer Python >= 3.6 for async availability.
1 parent f36f1f5 commit fa4d3d7

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33
with open('README.rst') as f:
44
readme = f.read()
@@ -13,8 +13,8 @@
1313
author_email='[email protected]',
1414
keywords='crypto cryptocurrency wrapper cryptocompare crypto_compare',
1515
license='MIT',
16-
python_requires='>=2.7',
17-
packages=['crypto_compare'],
18-
classifiers=['Programming Language :: Python :: 2.7'],
19-
install_requires=['urllib2', 'pytest']
20-
)
16+
python_requires='>=3.6',
17+
packages=find_packages(),
18+
classifiers=['Programming Language :: Python :: 3.6'],
19+
install_requires=['urllib3', 'pytest']
20+
)

0 commit comments

Comments
 (0)