Skip to content

Commit

Permalink
CDSTP-83 Update setup.py to include all packages using find_packages (#…
Browse files Browse the repository at this point in the history
…84)

* CDSTP-83 Update setup.py to include an extras_require parameter for protocol verifier

* CDSTP-83 remove protocol verifier from main packages

* Fix linting issue

* Remove duplicate entry in setup.py

* Update setup to exclude internal modules within extra

* Only include 'test_harness.protocol_verifier'

* change to pv

* testing a change

* revert back to how it was

* update

* testing a known package

* testing full package

* trying pv packages

* update pv

* update setuppy to use find_packages
  • Loading branch information
AdrianMontaguSmartDCSIT authored Aug 1, 2024
1 parent 52eda5a commit a796a85
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 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
from setuptools import setup, find_packages

setup(
name='test_harness',
Expand All @@ -11,19 +11,7 @@
),
author='Freddie Mather',
author_email='[email protected]',
packages=[
'test_harness',
'test_harness.simulator',
'test_harness.protocol_verifier',
'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',
],
packages=find_packages(),
package_dir={"test_harness": "test_harness"},
include_package_data=True,
)

0 comments on commit a796a85

Please sign in to comment.