changeset 1039:3133ddc3cb73

cm: Separate `requirements` from what `setup.py` wants.
author Ludovic Chabant <ludovic@chabant.com>
date Tue, 16 Jan 2018 08:42:18 -0800
parents 7487e2df8a56
children 506a5cb1e942
files setup.py
diffstat 1 files changed, 30 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/setup.py	Tue Jan 16 08:41:46 2018 -0800
+++ b/setup.py	Tue Jan 16 08:42:18 2018 -0800
@@ -151,8 +151,36 @@
     version = '0.0'
 
 
-install_requires = readlines('requirements.txt')
-tests_require = readlines('dev-requirements.txt')
+install_requires = [
+    'colorama>=0.3.3',
+    'compressinja>=0.0.2',
+    'Flask>=0.10.1',
+    'Flask-IndieAuth>=0.0.3.2',
+    'Flask-Login>=0.3.2',
+    'Inukshuk>=0.1.1',
+    'Jinja2>=2.9.6',
+    'Markdown>=2.6.2',
+    'MarkupSafe>=1.0',
+    'misaka>=2.1.0',
+    'paramiko>=2.0.0',
+    'Pillow>=4.3.0',
+    'Pygments>=2.0.2',
+    'pystache>=0.5.4',
+    'python-dateutil>=2.4.2',
+    'PyYAML>=3.11',
+    'repoze.lru>=0.6',
+    'smartypants>=1.8.6',
+    'strict-rfc3339>=0.5',
+    'textile>=2.2.2',
+    'Unidecode>=0.4.18',
+    'Werkzeug>=0.12.2'
+]
+tests_require = [
+    'invoke>=0.21.0',
+    'pytest>=2.8.7',
+    'pytest-cov>=2.2.1',
+    'pytest-mock>=0.10.1'
+]
 
 
 setup(