Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated setup.py with autoval_test_runner as entry point #18

Draft
wants to merge 1 commit into
base: dev
Choose a base branch
from
Draft
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
27 changes: 27 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
"""
This file is used to configure your package for distribution.
It tells python how to install your package, what dependencies it has, and what scripts to run.

"""

from setuptools import find_packages, setup

setup(
name="ocp-diag-autoval",
version="0.1.0",
Packages=find_packages(),
include_package_data=True,
install_requires=[
"lxml", # adding other dependencies
],
entry_points={
"console_scripts": [
"autoval-test=autoval_test_runner:main", # adding the main entry point,
],
},
description="OCP Diag Autoval - Core framework for Autoval Tests",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/opencomputeproject/ocp-diag-autoval",
python_requires=">=3.10",
)