mirror of
https://github.com/ihabunek/toot.git
synced 2024-11-03 04:17:21 -05:00
Move requirements to requirements.txt
This commit is contained in:
parent
acda7cbb94
commit
0c4a5f3aaf
3
requirements.txt
Normal file
3
requirements.txt
Normal file
@ -0,0 +1,3 @@
|
||||
requests>=2.13,<3.0
|
||||
beautifulsoup4>=4.5.0,<5.0
|
||||
future>=0.16
|
9
setup.py
9
setup.py
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user