mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
updated for version 1.0.8
This commit is contained in:
parent
96aa10d1ee
commit
f35d90a822
7 changed files with 12 additions and 25 deletions
|
@ -1,7 +1,9 @@
|
|||
12-05-2014
|
||||
Version 1.0.8
|
||||
|
||||
[Updated] - upgrade main fuction add config.py
|
||||
[Updated] - Added signle install argument
|
||||
[Updated] - Fix arguments
|
||||
[Updated] - Added 2 options in list argument
|
||||
|
||||
11-05-2014
|
||||
Version 1.0.7
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
include runner README.rst
|
||||
recursive-include man *
|
||||
recursive-include logo *
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
__version__ = "1.0.8"
|
||||
__author__ = "dslackw"
|
||||
__email__ = "d.zlatanidis@gmail.com"
|
||||
__homepage__ = "https://github.com/dslackw/slpkg"
|
||||
__license__ = "GPLv3"
|
|
@ -6,12 +6,12 @@ import os
|
|||
import sys
|
||||
import argparse
|
||||
import subprocess
|
||||
from config import __version__
|
||||
|
||||
|
||||
''' path file record '''
|
||||
__packages__ = "/var/log/packages/"
|
||||
|
||||
__version__ = "1.0.8"
|
||||
|
||||
|
||||
''' this fuction return the path of the package '''
|
3
runner
3
runner
|
@ -1,3 +0,0 @@
|
|||
import bin.slpkg
|
||||
|
||||
bin.slpkg.start ()
|
19
setup.py
19
setup.py
|
@ -4,22 +4,19 @@
|
|||
import os, sys, shutil
|
||||
|
||||
from distutils.core import setup
|
||||
from bin.config import __version__, __author__, __homepage__, __email__
|
||||
|
||||
setup(
|
||||
name='slpkg',
|
||||
py_modules=['slpkg'],
|
||||
version = __version__,
|
||||
name = 'slpkg',
|
||||
version = "1.0.8",
|
||||
description = "Python tool to manage Slackware packages",
|
||||
keywords = ["slackware", "slpkg", "upgrade", "install", "remove",
|
||||
"view", "slackpkg", "tool"],
|
||||
author = __author__,
|
||||
author_email = __email__,
|
||||
url = __homepage__,
|
||||
download_url = __homepage__,
|
||||
scripts=['runner'],
|
||||
package_data={"": ["LICENSE", "README.rst", "CHANGELOG"]},
|
||||
classifiers=[
|
||||
author = "dslackw",
|
||||
author_email = "d.zlatanidis@gmail.com",
|
||||
url = "https://github.com/dslackw/slpkg",
|
||||
scripts = ['bin/slpkg'],
|
||||
package_data = {"": ["LICENSE", "README.rst", "CHANGELOG"]},
|
||||
classifiers = [
|
||||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
||||
"Operating System :: POSIX :: Linux",
|
||||
"Programming Language :: Python",
|
||||
|
|
Loading…
Reference in a new issue