1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-09-22 04:25:55 -04:00

Don't use ~= operator for defining dependancies

It's not supported in older versions of pip and causes problems.

issue #8
issue #10
This commit is contained in:
Ivan Habunek 2017-04-26 11:07:43 +02:00
parent 47b6a830a1
commit acda7cbb94
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95

View File

@ -28,9 +28,9 @@ setup(
],
packages=['toot'],
install_requires=[
'requests ~= 2.13',
'beautifulsoup4 ~= 4.5.3',
'future',
'requests>=2.13,<3.0',
'beautifulsoup4>=4.5.0,<5.0',
'future>=0.16',
],
entry_points={
'console_scripts': [