Skip to content
Snippets Groups Projects
setup.cfg 1.67 KiB
Newer Older
Attila Farkas's avatar
Attila Farkas committed
[metadata]
name = cyber-sandbox-creator
version = 2.0.0
author = Attila Farkas, Jana Ziková, Kamil Andoniadis
author_email = farkas@mail.muni.cz
description = Local virtual lab creation
long_description = file: README.md
long_description_content_type = text/markdown
url = https://gitlab.ics.muni.cz/muni-kypo-csc/cyber-sandbox-creator
project_urls =
    Bug Tracker = https://gitlab.ics.muni.cz/muni-kypo-csc/cyber-sandbox-creator/-/issues
    Documentation = https://gitlab.ics.muni.cz/muni-kypo-csc/cyber-sandbox-creator/-/wikis/home
classifiers =
    Programming Language :: Python :: 3
    Programming Language :: Python :: 3.6
    Programming Language :: Python :: 3.7
    Programming Language :: Python :: 3.8
    Programming Language :: Python :: 3.9
    License :: OSI Approved :: MIT License
    Operating System :: OS Independent

[bdist_wheel]
universal = 1

[options]
zip_safe = False
include_package_data = True
package_dir =
    = cyber_sandbox_creator
packages =
    .
    ansible_generator
    input_parser
    io
    vagrant_generator
scripts =
    cyber_sandbox_creator/scripts/create.py
    cyber_sandbox_creator/scripts/manage.py
python_requires = >=3.6
install_requires =
    Jinja2 >=2.10.1
    PyYAML >=5.3.1
    netaddr >=0.7
    kypo-topology-definition @ git+https://gitlab.ics.muni.cz/muni-kypo-crp/backend-python/kypo-topology-definition.git

[options.data_files]
conf =
    cyber_sandbox_creator/resources/conf/configuration.yml
    cyber_sandbox_creator/resources/conf/flavors.yml
files =
    cyber_sandbox_creator/resources/files/playbook.yml
    cyber_sandbox_creator/resources/files/user_playbook.yml
templates =
    cyber_sandbox_creator/resources/templates/vagrantfile.j2