diff options
author | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-02-26 11:27:31 +0100 |
---|---|---|
committer | Cédric Bonhomme <cedric@cedricbonhomme.org> | 2020-02-26 11:27:31 +0100 |
commit | 62b3afeeedfe054345f86093e2d243e956c1e3c9 (patch) | |
tree | bbd58f5c8c07f5d87b1c1cca73fa1d5af6178f48 /pyproject.toml | |
parent | Updated Python dependencies. (diff) | |
download | newspipe-62b3afeeedfe054345f86093e2d243e956c1e3c9.tar.gz newspipe-62b3afeeedfe054345f86093e2d243e956c1e3c9.tar.bz2 newspipe-62b3afeeedfe054345f86093e2d243e956c1e3c9.zip |
The project is now using Poetry.
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 00000000..fb57d65e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,44 @@ +[tool.poetry] +name = "newspipe" +version = "8.0.0" +description = "Newspipe is a web-based news aggregator and reader." +authors = ["Cédric Bonhomme <cedric@cedricbonhomme.org>"] +license = "AGPL-3.0-or-later" + +[tool.poetry.dependencies] +python = "^3.8" +aiohttp = "^3.6.2" +requests = "^2.23.0" +chardet = "^3.0.4" +requests-futures = "^1.0.0" +feedparser = "^5.2.1" +beautifulsoup4 = "^4.8.2" +lxml = "^4.5.0" +opml = "^0.5" +SQLAlchemy = "^1.3.13" +alembic = "^1.4.0" +Flask = "^1.1.1" +Flask-SQLAlchemy = "^2.4.1" +Flask-Login = "^0.5.0" +Flask-Principal = "^0.4.0" +Flask-WTF = "^0.14.3" +Flask-RESTful = "^0.3.8" +Flask-Restless = "^0.17.0" +Flask-paginate = "^0.5.5" +Flask-Babel = "^1.0.0" +Flask-SSLify = "^0.1.5" +Flask-Migrate = "^2.5.2" +Flask-Script = "^2.0.6" +WTForms = "^2.2.1" +sendgrid = "^6.1.2" +python-dateutil = "^2.8.1" +psycopg2-binary = "^2.8.4" + + + +[tool.poetry.dev-dependencies] +sqlalchemy-schemadisplay = "^1.3" + +[build-system] +requires = ["poetry>=0.12"] +build-backend = "poetry.masonry.api" |