Skip to content

Commit

Permalink
Merge pull request #3 from vchinnipilli/kubestrike/changes
Browse files Browse the repository at this point in the history
Kubestrike/changes
  • Loading branch information
vasantchinnipilli committed Dec 14, 2020
2 parents ebf747b + daa5745 commit c64ca9c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@

### Clone the repo and install

To install this tool or clone and run this application, you'll need [Git](https://git-scm.com), [python3](https://www.python.org/downloads/) and [pip](https://pypi.org/project/pip/) installed on your computer. From your command line:
To install this tool or clone and run this application, you'll need [Git](https://git-scm.com), [python3](https://www.python.org/downloads/) and [pip](https://pypi.org/project/pip/) installed on your computer. It is advised you install this tool in [virtual environment](https://virtualenv.pypa.io/en/latest/installation.html)

From your command line:

```bash

Expand Down
16 changes: 7 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,25 +8,23 @@

setuptools.setup(
name="kubestrike",
version="v1.0.0",
version="v1.0",
author="vasant chinnipilli",
author_email="[email protected]",
description="A Blazing fast Security Auditing tool for Kuberentes",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/vchinnipilli/kubestrike",
packages=setuptools.find_packages(),
python_requires='>=3.0',
install_requires=requirements,
classifiers=[
'Environment :: Console',
'Intended Audience :: Security Professionals'
'Intended Audience :: Auditors'
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent'
'Operating System :: OS Independent',
'License :: OSI Approved :: MIT License',
'Topic :: Security',
'Topic :: Software Development :: Security Auditing Tools'
],
python_requires='>=3.0',
install_requires=requirements
'Topic :: Software Development :: Testing'
]
)

0 comments on commit c64ca9c

Please sign in to comment.