Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare repo for PyPi release. #136

Merged
merged 4 commits into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
Empty file added cyberbattle/samples/__init__.py
Empty file.
Empty file.
Empty file.
2 changes: 1 addition & 1 deletion cyberbattle/samples/chainpattern/chainpattern.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def next(name):
outgoing=DEFAULT_ALLOW_RULES),
value=100,
properties=["MySql", "Ubuntu", "nginx/1.10.3"],
owned_string="Intermediate chain node owned, no intinsic value",
owned_string="Intermediate chain node owned, no intrinsic value",
vulnerabilities=dict(
ProbeLinux=m.VulnerabilityInfo(
description="Probe to check if the node runs Linux",
Expand Down
Empty file.
Empty file.
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,4 @@ progressbar2==3.51.4
decorator==4.3
zipp==3.19.1
ipython==8.16.1
pandas==2.1.1
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ def get_install_requires(requirements_txt) -> List[str]:

# main setup kw args
setup_kwargs = {
'name': 'loonshot-sim',
'version': '0.1',
'description': "The simulation and RL code for the S+C loonshot project",
'author': 'S+C Loonshot Team',
'author_email': 'scloonshot@Microsoft.com',
'name': 'cyberbattlesim',
'version': '0.1.0',
'description': "An experimentation and research platform to investigate the interaction of automated agents in an abstract simulated network environments.",
'author': 'CyberBattleSim Team',
'author_email': 'cyberbattlesim@microsoft.com',
'install_requires': get_install_requires("requirements.txt"),
'classifiers': [
'Environment :: Other Environment',
Expand Down
Loading