1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-16 06:15:25 +00:00

Move requirements to requirements.txt

This commit is contained in:
Ivan Habunek 2017-04-26 11:16:22 +02:00
parent acda7cbb94
commit 0c4a5f3aaf
No known key found for this signature in database
GPG Key ID: CDBD63C43A30BB95
2 changed files with 7 additions and 5 deletions

3
requirements.txt Normal file
View File

@ -0,0 +1,3 @@
requests>=2.13,<3.0
beautifulsoup4>=4.5.0,<5.0
future>=0.16

View File

@ -5,6 +5,9 @@ from setuptools import setup
with open("README.rst") as readme:
long_description = readme.read()
with open("requirements.txt") as f:
install_requires = f.read().split()
setup(
name='toot',
version='0.9.1',
@ -27,11 +30,7 @@ setup(
'Programming Language :: Python :: 3.6',
],
packages=['toot'],
install_requires=[
'requests>=2.13,<3.0',
'beautifulsoup4>=4.5.0,<5.0',
'future>=0.16',
],
install_requires=install_requires,
entry_points={
'console_scripts': [
'toot=toot.console:main',