From ebb8ad0ec476e7a06611561edec46122ef1d2baf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=93scar=20Garc=C3=ADa=20Amor?= Date: Sun, 11 Nov 2018 13:47:05 +0100 Subject: [PATCH] Fix setup.py imports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Óscar García Amor --- setup.py | 6 +----- sysdweb/__init__.py | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/setup.py b/setup.py index e47e408..1e44881 100644 --- a/setup.py +++ b/setup.py @@ -9,8 +9,6 @@ import sysdweb as project import os -from pip.download import PipSession -from pip.req import parse_requirements from setuptools import find_packages from setuptools import setup @@ -32,9 +30,7 @@ def read(fname): url = project.URL, long_description=read('README.md'), packages=find_packages(), - install_requires=[str(x.req) for x in - parse_requirements('requirements.txt', - session=PipSession())], + install_requires=read('requirements.txt'), package_data={'sysdweb': [ 'templates/static/css/*', 'templates/static/fonts/*', diff --git a/sysdweb/__init__.py b/sysdweb/__init__.py index b58fb67..a7aca7e 100644 --- a/sysdweb/__init__.py +++ b/sysdweb/__init__.py @@ -6,7 +6,7 @@ # Distributed under terms of the GNU GPLv3 license. NAME = 'sysdweb' -VERSION = '1.1.2' +VERSION = '1.1.3' AUTHOR_NAME = 'Óscar García Amor' AUTHOR_EMAIL = 'ogarcia@connectical.com' DESCRIPTION = 'Control systemd services through Web or REST API'