aboutsummaryrefslogtreecommitdiff
path: root/Pipfile
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-02-23 14:43:14 +0100
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-02-23 14:43:14 +0100
commit1acdde503a76a6a26670e860f2da71e8f1f69159 (patch)
tree948980397927743ca7ee82b3eb9b43c1d113d112 /Pipfile
parentThe link of a feed can not be None. (diff)
downloadnewspipe-1acdde503a76a6a26670e860f2da71e8f1f69159.tar.gz
newspipe-1acdde503a76a6a26670e860f2da71e8f1f69159.tar.bz2
newspipe-1acdde503a76a6a26670e860f2da71e8f1f69159.zip
Added Pipfile.
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile39
1 files changed, 39 insertions, 0 deletions
diff --git a/Pipfile b/Pipfile
new file mode 100644
index 00000000..ee298a4f
--- /dev/null
+++ b/Pipfile
@@ -0,0 +1,39 @@
+[[source]]
+
+url = "https://pypi.python.org/simple"
+verify_ssl = true
+name = "pypi"
+
+
+[packages]
+
+aiohttp = "==3.0.2"
+requests = "==2.18.4"
+chardet = "==3.0.4"
+requests-futures = "==0.9.7"
+feedparser = "==5.2.1"
+"beautifulsoup4" = "==4.6.0"
+lxml = "==4.1.1"
+opml = "==0.5"
+"psycopg2" = "==2.7.4"
+SQLAlchemy = "==1.2.4"
+alembic = "==0.9.8"
+Flask = "==0.12.2"
+Flask-SQLAlchemy = "==2.3.2"
+Flask-Login = "==0.4.1"
+Flask-Principal = "==0.4.0"
+Flask-WTF = "==0.14.2"
+Flask-RESTful = "==0.3.6"
+Flask-Restless = "==0.17.0"
+Flask-paginate = "==0.5.1"
+Flask-Babel = "==0.11.2"
+Flask-SSLify = "==0.1.5"
+Flask-Migrate = "==2.1.1"
+Flask-Script = "==2.0.6"
+WTForms = "==2.1"
+sendgrid = "==5.3.0"
+python-dateutil = "==2.6.1"
+
+
+[dev-packages]
+
bgstack15