-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
35 lines (30 loc) · 994 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Copyright 2022, Red Hat, Inc.
# SPDX-License-Identifier: LGPL-2.1-or-later
# pylint: disable=import-error
from setuptools import find_packages, setup
def get_long_description():
with open("README.md", "r", encoding="utf-8") as readme_file:
return readme_file.read()
setup(name='openscap-report',
version='1.0.0',
description='Tool for generating report from results of oscap scan.',
long_description=get_long_description(),
long_description_content_type="text/markdown",
url='https://github.com/OpenSCAP/oscap-report',
author='Jan Rodak',
author_email='[email protected]',
license='LGPL-2.1 License',
packages=find_packages(),
install_requires=[
"lxml",
"jinja2"
],
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'oscap-report=openscap_report.cli:main',
],
},
python_requires='>=3.6',
)