Introduction
Introduction Statistics Contact Development Disclaimer Help
Move requirements to requirements.txt - toot - Unnamed repository; edit this fi…
Log
Files
Refs
LICENSE
---
commit 0c4a5f3aaf8833f8d70e83aa6ef772c6ce1300dd
parent acda7cbb945692efbb79a720354de7aec64f1927
Author: Ivan Habunek <[email protected]>
Date: Wed, 26 Apr 2017 11:16:22 +0200
Move requirements to requirements.txt
Diffstat:
requirements.txt | 3 +++
setup.py | 9 ++++-----
2 files changed, 7 insertions(+), 5 deletions(-)
---
diff --git a/requirements.txt b/requirements.txt
@@ -0,0 +1,3 @@
+requests>=2.13,<3.0
+beautifulsoup4>=4.5.0,<5.0
+future>=0.16
diff --git a/setup.py b/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',
You are viewing proxied material from vernunftzentrum.de. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.