mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-11-17 07:48:18 +01:00
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
#!/usr/bin/env python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import os, sys, shutil
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(
|
|
name='Slpkg',
|
|
py_modules=['slpkg'],
|
|
version='1.0.3',
|
|
description="Python tool to manage Slackware packages",
|
|
keywords=["slpkg", "upgrade", "install", "remove", "view", "slackpkg", "tool"],
|
|
author="dslackw",
|
|
author_email="d.zlatanidis@gmail.com",
|
|
url="https://github.com/dslackw/slpkg",
|
|
download_url="https://github.com/dslackw/slpkg/archive/v1.0.3.tar.gz",
|
|
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",
|
|
"Programming Language :: Python :: 2.7",
|
|
"Development Status :: 3 - Alpha",
|
|
"Topic :: Intersetup.pynet :: Utilities"],
|
|
long_description=open("README.rst").read()
|
|
)
|
|
|
|
if 'install' in sys.argv:
|
|
man_path = "/usr/man/man8/"
|
|
os.system("mkdir -p {}".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))
|