Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions servicereport

This file was deleted.

23 changes: 17 additions & 6 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,21 @@
# (C) Copyright IBM Corp. 2018, 2019
# Author: Sourabh Jain <[email protected]>


[metadata]
name: ServiceReport
description: FFDC validation tool
long_description: Validation tool to verify First Failure Data Capture (FFDC) configurations
author: Sourabh Jain
author_email: [email protected]
name = ServiceReport
version = attr: servicereportpkg.get_version
author = Sourabh Jain
author_email = [email protected]
description = FFDC validation tool
long_description = file: README.md
license = GPL-2.0-only
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python

[options]
packages = find:

[options.entry_points]
console_scripts =
servicereport = servicereportpkg:main
27 changes: 2 additions & 25 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,26 +1,3 @@
# SPDX-License-Identifier: GPL-2.0-only
#
# (C) Copyright IBM Corp. 2018, 2019
# Author: Sourabh Jain <[email protected]>
from setuptools import setup

import os
import sys
from setuptools import setup, find_packages

from servicereportpkg import get_version

# Workaround for https://bugs.python.org/issue644744
if "bdist_rpm" in sys.argv[1:]:
os.putenv("COMPRESS", " ")

setup(packages=find_packages(),
scripts=['servicereport'],
version=get_version(),
data_files=[('share/man/man8', ['man/servicereport.8']),
('share/doc/ServiceReport', ['README.md']),
('share/licenses/ServiceReport', ['COPYING']),
('/usr/lib/systemd/system',
['service/servicereport.service'])],
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python'])
setup()