1
0
mirror of https://github.com/openSUSE/osc.git synced 2024-09-19 16:56:17 +02:00
github.com_openSUSE_osc/setup.py

138 lines
4.5 KiB
Python
Raw Normal View History

2020-09-19 23:28:30 +02:00
#!/usr/bin/env python3
from distutils.core import setup
import distutils.core
from distutils.command import build, install_data
import gzip
import os.path
import setuptools
import osc.core
from osc import commandline
class build_osc(build.build, object):
"""
Custom build command which generates man page.
"""
def build_man_page(self):
"""
"""
man_path = os.path.join(self.build_base, 'osc.1.gz')
distutils.log.info('generating %s' % man_path)
outfile = gzip.open(man_path, 'wt')
osccli = commandline.Osc(stdout=outfile)
# FIXME: we cannot call the main method because osc expects an ~/.oscrc
# file (this would break builds in environments like the obs)
# osccli.main(argv = ['osc','man'])
osccli.optparser = osccli.get_optparser()
osccli.do_man(None)
2009-05-09 16:16:18 +02:00
outfile.close()
def run(self):
super(build_osc, self).run()
self.build_man_page()
2016-02-15 23:31:02 +01:00
# take a potential build-base option into account (for instance, if osc is
# build and installed like this:
# python setup.py build --build-base=<dir> ... install ...)
class install_data(install_data.install_data, object):
def initialize_options(self):
super(install_data, self).initialize_options()
self.built_data = None
def finalize_options(self):
super(install_data, self).finalize_options()
self.set_undefined_options('build', ('build_base', 'built_data'))
data_files = []
for f in self.data_files:
# f is either a str or a (dir, files) pair
# (see distutils.command.install_data.install_data.run)
if isinstance(f, str):
data_files.append(os.path.join(self.built_data, f))
else:
data_files.append((f[0], [os.path.join(self.built_data, i) for i in f[1]]))
self.data_files = data_files
2016-02-15 23:31:02 +01:00
data_files = []
data_files.append((os.path.join('share', 'man', 'man1'), ['osc.1.gz']))
2022-06-21 13:40:13 +02:00
with open("README.md") as fh:
lines = fh.readlines()
while lines:
line = lines[0].strip()
if not line or line.startswith("["):
# skip leading empty lines
# skip leading lines with links to badges
lines.pop(0)
continue
break
long_description = "".join(lines)
cmdclass = {
'build': build_osc,
'install_data': install_data
}
# keep build deps minimal and be tolerant to missing sphinx
# that is not needed during package build
try:
import sphinx.setup_command
cmdclass['build_doc'] = sphinx.setup_command.BuildDoc
except ImportError:
pass
setuptools.setup(
name='osc',
version=osc.core.__version__,
description='openSUSE commander',
long_description=long_description,
long_description_content_type="text/plain",
author='openSUSE project',
author_email='opensuse-buildservice@opensuse.org',
2022-01-26 15:03:23 +01:00
license='GPLv2+',
platforms=['Linux', 'MacOS X', 'FreeBSD'],
keywords=['openSUSE', 'SUSE', 'RPM', 'build', 'buildservice'],
url='http://en.opensuse.org/openSUSE:OSC',
download_url='https://github.com/openSUSE/osc',
packages=['osc', 'osc.util'],
data_files=data_files,
install_requires=['cryptography', 'urllib3'],
entry_points={
'console_scripts': [
'osc=osc.babysitter:main'
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Archiving :: Packaging",
],
# Override certain command classes with our own ones
cmdclass=cmdclass,
2022-02-17 13:28:47 +01:00
test_suite="tests",
)