mirror of
https://github.com/katanemo/plano.git
synced 2026-05-10 00:02:43 +02:00
fix pkg_resources error (#123)
This commit is contained in:
parent
2a9b9486f3
commit
5ba7db21d0
1 changed files with 4 additions and 2 deletions
|
|
@ -8,10 +8,12 @@ setup(
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
py_modules = ['cli', 'core', 'targets', 'utils', 'config_generator'],
|
py_modules = ['cli', 'core', 'targets', 'utils', 'config_generator'],
|
||||||
include_package_data=True,
|
include_package_data=True,
|
||||||
|
# Specify to include the docker-compose.yml file
|
||||||
package_data={
|
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={
|
entry_points={
|
||||||
'console_scripts': [
|
'console_scripts': [
|
||||||
'archgw=cli:main',
|
'archgw=cli:main',
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue