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

Repackage credential digger #288

Merged
merged 7 commits into from
Dec 15, 2023
Merged
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
2 changes: 2 additions & 0 deletions .pep8speaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ flake8: # Same as scanner.linter value
- W292 # no newline at the end of file (introduces W391)
- W503 # line break before binary operator
- W504 # line break after binary operator
exclude: # Exclude some files
- version.py

no_blank_comment: True # If True, no comment is made on PR without any errors.
descending_issues_order: False # If True, PEP 8 issues in message will be displayed in descending order of line numbers in the file
Expand Down
3 changes: 0 additions & 3 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,4 +1 @@
include requirements.txt
include credentialdigger/models_data/*.bin
include credentialdigger/generator/pattern_data/*.txt
include credentialdigger/generator/pattern_data/*.json
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
[![REUSE status](https://api.reuse.software/badge/github.com/SAP/credential-digger)](https://api.reuse.software/info/github.com/SAP/credential-digger)
![GitHub release (latest by date)](https://img.shields.io/github/v/release/SAP/credential-digger?logo=github)
![PyPI](https://img.shields.io/pypi/v/credentialdigger?logo=pypi)
![PyPI - Python Version](https://img.shields.io/pypi/pyversions/credentialdigger)


![Logo](https://raw.githubusercontent.com/SAP/credential-digger/main/github_assets/Logo-CD-Mint_48.png)

Expand Down
40 changes: 40 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
[build-system]
requires = ['setuptools >= 61.0']
build-backend = 'setuptools.build_meta'

[project]
name = 'credentialdigger'
dynamic = ['dependencies', 'version']
authors = [
{name = 'SAP SE'}
]
maintainers = [
{name = 'Marco Rosa', email = 'marco.rosa@sap.com'},
{name = 'Slim Trabelsi', email = 'slim.trabelsi@sap.com'}
]
description = 'Credential Digger'
readme = 'README.md'
license = {file = 'LICENSE'}
requires-python = '>= 3.8, < 3.12'
classifiers = [
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Operating System :: OS Independent',
'Topic :: Security',
]

[project.scripts]
credentialdigger = 'credentialdigger.__main__:main'

[tool.setuptools.dynamic]
dependencies = {file = ['requirements.txt']}
version = {file = ['version.py']}

[project.urls]
Homepage = 'https://github.com/sap/credential-digger'
Documentation = 'https://github.com/SAP/credential-digger/wiki'
Repository = 'https://github.com/sap/credential-digger.git'
Issues = 'https://github.com/SAP/credential-digger/issues'
34 changes: 0 additions & 34 deletions setup.py

This file was deleted.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
1 change: 1 addition & 0 deletions version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4.13.0