mirror of
https://github.com/katanemo/plano.git
synced 2026-05-09 15:52:44 +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(),
|
||||
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',
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue