Skip to content

Commit

Permalink
Refactoring-setup-py-structure (#86)
Browse files Browse the repository at this point in the history
* explictly state all folders in test_harness.protocol_verifier

* add extra folders

* remove pv_config

* remove test folder

* udpate manifest
  • Loading branch information
AdrianMontaguSmartDCSIT authored Aug 1, 2024
1 parent a796a85 commit cf260ac
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
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,
)

0 comments on commit cf260ac

Please sign in to comment.