fix pkg_resources error (#123)

This commit is contained in:
Adil Hafeez 2024-10-04 20:24:08 -07:00 committed by GitHub
parent 2a9b9486f3
commit 5ba7db21d0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -8,10 +8,12 @@ setup(
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',