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

Refactoring-setup-py-structure #86

Merged
merged 5 commits into from
Aug 1, 2024
Merged
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
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
include test_harness/plus2json.pyz
include test_harness/protocol_verifier/plus2json.pyz
include test_harness/config/*.config
include test_harness/config/*.yaml
25 changes: 23 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
"""Setup script for installation
"""
from setuptools import setup, find_packages
from setuptools import setup

setup(
name='test_harness',
Expand All @@ -11,7 +11,28 @@
),
author='Freddie Mather',
author_email='[email protected]',
packages=find_packages(),
packages=[
'test_harness',
'test_harness.simulator',
'test_harness.message_buses',
'test_harness.config',
'test_harness.metrics',
'test_harness.async_management',
'test_harness.reporting',
'test_harness.requests_th',
'test_harness.results',
'test_harness.process_manager',
'test_harness.protocol_verifier',
'test_harness.protocol_verifier.config',
'test_harness.protocol_verifier.metrics_and_events',
'test_harness.protocol_verifier.mocks',
'test_harness.protocol_verifier.pv_config',
'test_harness.protocol_verifier.reporting',
'test_harness.protocol_verifier.requests',
'test_harness.protocol_verifier.results',
'test_harness.protocol_verifier.testing_suite',
'test_harness.protocol_verifier.utils',
],
package_dir={"test_harness": "test_harness"},
include_package_data=True,
)
Loading