mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
71 lines
2.5 KiB
Python
Executable file
71 lines
2.5 KiB
Python
Executable file
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# setup.py file is part of slpkg.
|
|
|
|
# Copyright 2014 Dimitris Zlatanidis <d.zlatanidis@gmail.com>
|
|
# All rights reserved.
|
|
|
|
# Utility for easy management packages in Slackware
|
|
|
|
# https://github.com/dslackw/slpkg
|
|
|
|
# Slpkg is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
import os
|
|
import sys
|
|
import shutil
|
|
|
|
from slpkg import __version__, __email__, __author__
|
|
|
|
try:
|
|
from setuptools import setup
|
|
except ImportError:
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name="slpkg",
|
|
packages=["slpkg", "slpkg/sbo", "slpkg/pkg", "slpkg/slack"],
|
|
scripts=["bin/slpkg"],
|
|
version=__version__,
|
|
description="Python tool to manage Slackware packages",
|
|
keywords=["slackware", "slpkg", "upgrade", "install", "remove",
|
|
"view", "slackpkg", "tool", "build"],
|
|
author=__author__,
|
|
author_email=__email__,
|
|
url="https://github.com/dslackw/slpkg",
|
|
package_data={"": ["LICENSE", "README.rst", "CHANGELOG"]},
|
|
classifiers=[
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Environment :: Console",
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
"Operating System :: POSIX :: Linux",
|
|
"Operating System :: Unix",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 2",
|
|
"Programming Language :: Python :: 2.7",
|
|
"Programming Language :: Unix Shell",
|
|
"Topic :: Software Development :: Build Tools",
|
|
"Topic :: System :: Archiving :: Packaging",
|
|
"Topic :: System :: Software Distribution",
|
|
"Topic :: Utilities"],
|
|
long_description=open("README.rst").read()
|
|
)
|
|
|
|
if "install" in sys.argv:
|
|
man_path = "/usr/man/man8/"
|
|
os.system("mkdir -p {0}".format(man_path))
|
|
if os.path.exists(man_path):
|
|
print("Installing man pages")
|
|
man_page = "man/slpkg.8"
|
|
shutil.copy2(man_page, man_path)
|
|
os.chmod(man_path, int("444", 8))
|