Skip to content

Commit c012ba8

Browse files
author
Gal Ben David
committed
fix lint errors
1 parent 729474c commit c012ba8

File tree

4 files changed

+26
-4
lines changed

4 files changed

+26
-4
lines changed

.github/workflows/build.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ jobs:
2727
matrix:
2828
python-version: [3.6, 3.7, 3.8]
2929
os: [ubuntu-latest , macos-latest, windows-latest]
30-
3130
steps:
3231
- name: Checkout
3332
uses: actions/checkout@v1

Cargo.toml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,27 @@
11
[package]
22
name = "pyrepscan"
3-
version = "0.7.0"
3+
version = "0.7.1"
44
authors = ["Gal Ben David <[email protected]>"]
55
edition = "2018"
6+
description = "A Git Repository Secrets Scanner written in Rust"
7+
readme = "README.md"
8+
repository = "https://github.com/intsights/pyrepscan"
9+
homepage = "https://github.com/intsights/pyrepscan"
10+
license = "MIT"
11+
keywords = ["adblock", "ads", "adblocker", "rust", "brave", "abp", "pyo3"]
12+
13+
[package.metadata.maturin]
14+
requires-python = ">=3.6"
15+
classifier = [
16+
"License :: OSI Approved :: MIT License",
17+
"Operating System :: MacOS",
18+
"Operating System :: Microsoft",
19+
"Operating System :: POSIX :: Linux",
20+
"Programming Language :: Python :: 3.6",
21+
"Programming Language :: Python :: 3.7",
22+
"Programming Language :: Python :: 3.8",
23+
"Programming Language :: Rust",
24+
]
625

726
[lib]
827
name = "pyrepscan"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ strip = true
1414

1515
[tool.poetry]
1616
name = "pyrepscan"
17-
version = "0.7.0"
17+
version = "0.7.1"
1818
authors = ["Gal Ben David <[email protected]>"]
1919
description = "A Git Repository Secrets Scanner written in Rust"
2020
readme = "README.md"

pyrepscan/__init__.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
from .pyrepscan import *
1+
from . import pyrepscan
2+
3+
4+
GitRepositoryScanner = pyrepscan.GitRepositoryScanner
5+
RulesManager = pyrepscan.RulesManager

0 commit comments

Comments
 (0)