From 2eaac8cf17051eef3335c30054348d895132a069 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Sun, 24 Mar 2019 15:57:44 +0100 Subject: [PATCH] install_requires in setup.cfg --- remote/__main__.py | 2 +- setup.cfg | 11 +++++++++++ 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/remote/__main__.py b/remote/__main__.py index a073f5a..472c42c 100644 --- a/remote/__main__.py +++ b/remote/__main__.py @@ -113,7 +113,7 @@ def deploy(): with sudo(user="copanier"): put("remote/gunicorn.conf", "/srv/copanier/gunicorn.conf") pip("install gunicorn") - base = "https://framagit.org/ybon/copanier" + base = "https://gitlab.com/ybon/copanier" pip(f"install -U git+{base}") restart() diff --git a/setup.cfg b/setup.cfg index 111734a..2cf5edc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -2,6 +2,17 @@ name = copanier version = 0.0.1 +[options] +install_requires = + Jinja2==2.10 + minicli==0.4.4 + openpyxl==2.6.1 + PyJWT==1.7.1 + PyYAML==5.1 + roll==0.10.1 + ujson==1.35 + + [options.entry_points] console_scripts = copanier = copanier:main