Move requirements to requirements.txt

pull/31/head
Ivan Habunek 2017-04-26 11:16:22 +02:00
rodzic acda7cbb94
commit 0c4a5f3aaf
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: CDBD63C43A30BB95
2 zmienionych plików z 7 dodań i 5 usunięć

3
requirements.txt 100644
Wyświetl plik

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

Wyświetl plik

@ -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',