Skip to content

Commit

Permalink
Define version numbers in setup.py.
Browse files Browse the repository at this point in the history
Let's prevent messy deployings in the future.
  • Loading branch information
totokaka committed Apr 1, 2016
1 parent 61bc633 commit 69ca036
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
license='AGPL-3.0',
packages=find_packages(),
include_package_data=True,
install_requires=['Flask',
'Flask-Script',
'uwsgi',
'requests',
'beautifulsoup4',
'lxml',
'raven[flask]',
'pymongo']
install_requires=['Flask==0.10.1',
'Flask-Script==2.0.5',
'uwsgi==2.0.12',
'requests==2.9.1',
'beautifulsoup4==4.4.1',
'lxml==3.6.0',
'raven[flask]==5.12.0',
'pymongo==3.2.2']
)

0 comments on commit 69ca036

Please sign in to comment.