Skip to content

Commit

Permalink
Fix setup.py imports
Browse files Browse the repository at this point in the history
Signed-off-by: Óscar García Amor <ogarcia@connectical.com>
  • Loading branch information
ogarcia committed Nov 11, 2018
1 parent 5d716fe commit ebb8ad0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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/*',
Expand Down
2 changes: 1 addition & 1 deletion sysdweb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit ebb8ad0

Please sign in to comment.