-
Notifications
You must be signed in to change notification settings - Fork 106
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3 from vchinnipilli/kubestrike/changes
Kubestrike/changes
- Loading branch information
Showing
2 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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' | ||
] | ||
) |