diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 7247acd..0c24d0a 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -28,12 +28,12 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install tools run: | - python -m pip install --upgrade pip build + python -m pip install --upgrade pip build setuptools wheel twine - name: Install dependencies run: | pip install -r requirements.txt - name: Build package - run: python -m build + run: python setup.py sdist bdist_wheel - name: Install locally run: | diff --git a/CHANGELOG.md b/CHANGELOG.md index 4470d2e..cfdf3aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,11 +5,17 @@ This document records all notable changes to [nessus file reader by LimberDuck][ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.4.1] - 2022-05-13 + +### Fixed + +- requirements installation fixed + ## [0.4.0] - 2022-05-13 ### Added -- **commandline interface** - from now on this package will provide you possibility to run `nfr` in commandline. After installation type `nf` or `nfr --help` to find out more. +- **commandline interface** - from now on this package will provide you possibility to run `nfr` in commandline. After installation type `nfr` or `nfr --help` to find out more. - **Tenable.io files support** - initial support to pars nessus files coming from Tenable.io @@ -34,6 +40,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release +[0.4.1]: https://github.com/LimberDuck/nessus-file-reader/compare/v0.4.0...v0.4.1 [0.4.0]: https://github.com/LimberDuck/nessus-file-reader/compare/v0.3.0...v0.4.0 [0.3.0]: https://github.com/LimberDuck/nessus-file-reader/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/LimberDuck/nessus-file-reader/compare/v0.1.0...v0.2.0 diff --git a/nessus_file_reader/__about__.py b/nessus_file_reader/__about__.py index 84452fc..39906e2 100644 --- a/nessus_file_reader/__about__.py +++ b/nessus_file_reader/__about__.py @@ -27,14 +27,14 @@ __title__ = "nessus file reader by LimberDuck" __package_name__ = "nessus-file-reader" __icon__ = "LimberDuck-nessus-file-reader.ico" -__summary__ = "nessus file reader by LimberDuck (pronounced *ˈlɪm.bɚ dʌk*) is a python module" \ +__summary__ = "nessus file reader by LimberDuck (pronounced *ˈlɪm.bɚ dʌk*) is a CLI tool and python module" \ "created to quickly parse nessus files containing the results of scans" \ "performed by using Nessus by (C) Tenable, Inc." __uri__ = "https://github.com/LimberDuck" -__version__ = "0.1.0" -__release_date__ = "2019.06.23" +__version__ = "0.4.1" +__release_date__ = "2022.05.13" __author__ = u"Damian Krawczyk" __email__ = "damian.krawczyk@limberduck.org" __license_name__ = "GNU GPLv3" __license_link__ = "https://www.gnu.org/licenses/gpl-3.0.en.html" -__copyright__ = u"\N{COPYRIGHT SIGN} 2019 by %s" % __author__ +__copyright__ = u"\N{COPYRIGHT SIGN} 2019-2022 by %s" % __author__ diff --git a/nessus_file_reader/_version.py b/nessus_file_reader/_version.py index 49c37a8..01b3a8b 100644 --- a/nessus_file_reader/_version.py +++ b/nessus_file_reader/_version.py @@ -1 +1 @@ -__version__ = "0.4.0" \ No newline at end of file +__version__ = "0.4.1" \ No newline at end of file diff --git a/setup.py b/setup.py index 054ddfb..3bde570 100644 --- a/setup.py +++ b/setup.py @@ -3,8 +3,8 @@ with open("README.md", "r") as fh: long_description = fh.read() -# with open('requirements.txt') as f: -# required = f.read().splitlines() +with open('requirements.txt') as f: + required = f.read().splitlines() about = {} with open("nessus_file_reader/_version.py") as f: @@ -23,7 +23,7 @@ long_description_content_type="text/markdown", url="https://github.com/LimberDuck/nessus-file-reader", packages=setuptools.find_packages(), - # install_requires=required, + install_requires=required, entry_points={ "console_scripts": [ "nfr = nessus_file_reader.__main__:main"