Skip to content

Commit

Permalink
fix pkg_resources error (#123)
Browse files Browse the repository at this point in the history
  • Loading branch information
adilhafeez authored Oct 5, 2024
1 parent 2a9b948 commit 5ba7db2
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions arch/tools/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@
packages=find_packages(),
py_modules = ['cli', 'core', 'targets', 'utils', 'config_generator'],
include_package_data=True,
# Specify to include the docker-compose.yml file
package_data={
'': ['config/docker-compose.yaml', 'config/arch_config_schema.yaml'] #Specify to include the docker-compose.yml file
'': ['config/docker-compose.yaml', 'config/arch_config_schema.yaml']
},
install_requires=['pyyaml', 'pydantic', 'click', 'jinja2','pyyaml','jsonschema'], # Add dependencies here, e.g., 'PyYAML' for YAML processing
# Add dependencies here, e.g., 'PyYAML' for YAML processing
install_requires=['pyyaml', 'pydantic', 'click', 'jinja2','pyyaml','jsonschema', 'setuptools'],
entry_points={
'console_scripts': [
'archgw=cli:main',
Expand Down

0 comments on commit 5ba7db2

Please sign in to comment.