Skip to content

Commit

Permalink
Prepare repo for PyPi release. (#136)
Browse files Browse the repository at this point in the history
* Fix typo in logging output.

* Add a missing dependency

* Prepare repo for Pypi release.

---------

Co-authored-by: William Blum <[email protected]>
  • Loading branch information
MarcCote and blumu authored Aug 6, 2024
1 parent baf4f6e commit 8dfe8fe
Show file tree
Hide file tree
Showing 9 changed files with 7 additions and 6 deletions.
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

0 comments on commit 8dfe8fe

Please sign in to comment.