Skip to content

Commit

Permalink
v1.4
Browse files Browse the repository at this point in the history
read install_requires from requirements.txt
  • Loading branch information
kaijchang committed Aug 16, 2018
1 parent f70bef7 commit 7c64f0b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
setup(
name='sfpl',
packages=['sfpl'],
version='1.3',
version='1.4',
description='Unofficial Python API for SFPL',
author='Kai Chang',
author_email='[email protected]',
Expand All @@ -15,8 +15,8 @@
long_description=open(os.path.join(os.path.abspath(
os.path.dirname(__file__)), 'README.md')).read(),
long_description_content_type="text/markdown",
install_requires=['beautifulsoup4==4.6.3',
'requests==2.19.1', 'lxml==4.2.4'],
install_requires=[open(os.path.join(os.path.abspath(
os.path.dirname(__file__)), 'requirements.txt')).read().split('\n')[:-1]],
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
Expand Down

0 comments on commit 7c64f0b

Please sign in to comment.