Merge branch 'develop'

This commit is contained in:
Dimitris Zlatanidis 2022-05-30 13:24:29 +03:00
commit 7aaa945b9f
2 changed files with 3 additions and 3 deletions

View file

@ -58,7 +58,7 @@ print_logo()
setup(
name="slpkg",
packages=["slpkg", "slpkg/sbo", "slpkg/pkg", "slpkg/slack",
"slpkg/binary"],
"slpkg/binary", "slpkg/models"],
scripts=["bin/slpkg"],
version=_meta_.__version__,
description="Package manager for Slackware installations",

View file

@ -25,12 +25,12 @@
import os
import shutil
import sqlite3
from models.models import Database
from slpkg.utils import Utils
from slpkg.repositories import Repo
from slpkg.file_size import FileSize
from slpkg.downloader import Download
from slpkg.models.models import Database
from slpkg.__metadata__ import MetaData as _meta_
from slpkg.slack.mirrors import mirrors
@ -38,7 +38,7 @@ from slpkg.slack.slack_version import slack_ver
class Initialization(Utils):
"""Slpkg initialization starts all from here.
"""Slpkg initialization starts all from here.
Creates local package lists and updates or upgrades these.
"""
def __init__(self, check):