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

chore(main): release 0.9.1 #74

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# CHANGELOG

## [0.9.1](https://github.com/swimlane/atomic-operator/compare/0.9.0...0.9.1) (2023-12-24)


### Bug Fixes

* Adding pretty run output ([67bf78a](https://github.com/swimlane/atomic-operator/commit/67bf78a8a9d075783a953142549051cbd13cce29))
* Removing old python setup files and updating ci ([efdad4e](https://github.com/swimlane/atomic-operator/commit/efdad4ef787b7f0178b7f310c2c1cbb53d3bd444))
* removing setting in ci ([892079c](https://github.com/swimlane/atomic-operator/commit/892079c3b651f3567f2597cd2213ebc0514a80c2))
* Updated docs ([22c76da](https://github.com/swimlane/atomic-operator/commit/22c76dab4075aebe8708f7dd57af689144bb1ffe))
* Updatind dependencies ([256633b](https://github.com/swimlane/atomic-operator/commit/256633baba2a52ed8141562020aaf72162c16f06))

## [0.9.0](https://github.com/swimlane/atomic-operator/compare/0.8.5...0.9.0) (2023-03-06)


Expand Down
2 changes: 1 addition & 1 deletion atomic_operator/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
__title__ = "atomic-operator"
__description__ = "A python package to execute Atomic tests"
__url__ = "https://github.com/swimlane/atomic-operator"
__version__ = "0.9.0"
__version__ = "0.9.1"
__author__ = "Swimlane"
__author_email__ = "[email protected]"
__maintainer__ = "MSAdministrator"
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "atomic-operator"
version = "0.9.0"
version = "0.9.1"
description = "A python package to execute security tests on remote and local hosts"
authors = ["MSAdministrator <[email protected]>"]
maintainers = ["MSAdministrator <[email protected]>"]
Expand Down
93 changes: 93 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,93 @@
import os

from setuptools import setup, find_packages

def parse_requirements(requirement_file):
with open(requirement_file) as f:
return f.readlines()


def read(rel_path: str) -> str:
here = os.path.abspath(os.path.dirname(__file__))
# intentionally *not* adding an encoding option to open, See:
# https://github.com/pypa/virtualenv/issues/201#issuecomment-3145690
with open(os.path.join(here, rel_path)) as fp:
return fp.read()


here = os.path.abspath(os.path.dirname(__file__))

about = {}
with open(os.path.join(here, 'atomic_operator', '__meta__.py'), 'r') as f:
exec(f.read(), about)


PROJECT_URLS = {
"Documentation": "https://swimlane.com",
"Changelog": "https://github.com/swimlane/atomic-operator/blob/main/CHANGELOG.md",
"Bug Tracker": "https://github.com/swimlane/atomic-operator/issues",
"Source Code": "https://github.com/swimlane/atomic-operator",
"Funding": "https://github.com/sponsors/msadministrator",
}

CLASSIFIERS = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Security"
]

setup(
name=about['__title__'],
version=about['__version__'],
packages=find_packages(exclude=['tests*']),
license=about['__license__'],
description=about['__description__'],
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
project_urls=PROJECT_URLS,
install_requires=[
'requests>=2.20.0; python_version >= "3.6"',
'charset_normalizer~=2.0.0; python_version >= "3"',
'chardet>=3.0.2,<5; python_version < "3"',
'idna>=2.5,<3; python_version < "3"',
'idna>=2.5,<4; python_version >= "3"',
'urllib3>=1.21.1,<1.27',
'certifi>=2017.4.17',
'windows-curses>=2.2.0,<3.0.0; platform_system=="Windows" and python_version >= "3.6"',
'attrs>=21.3.0; python_version >= "3.6"',
'pyyaml>=6.0; python_version >= "3.6"',
'fire>=0.4.0; python_version >= "3.6"',
'pypsrp>=0.5.0; python_version >= "3.6"',
'paramiko>=2.7.2; python_version >= "3.6"',
'pick>=1.2.0; python_version >= "3.6"'
],
keywords=['atomic-red-team', 'att&ck', 'test', 'mitre', 'executor'],
url=about['__url__'],
author=about['__author__'],
author_email=about['__author_email__'],
maintainer=about['__maintainer__'],
maintainer_email=about['__maintainer_email__'],
python_requires='>=3.6, <4',
classifiers=CLASSIFIERS,
package_data={
'atomic_operator': ['data/logging.yml']
},
entry_points={
'console_scripts': [
'atomic-operator = atomic_operator.__main__:main'
]
}
)