-
-
Notifications
You must be signed in to change notification settings - Fork 648
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 1.17 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (39 loc) · 1.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=77"]
build-backend = "setuptools.build_meta"
[project]
name = "github-dorks"
dynamic = ["version"]
description = "Find leaked secrets with GitHub code search."
readme = "README.md"
requires-python = ">=3.10"
license = "Apache-2.0"
authors = [
{ name = "Samar Dhwoj Acharya", email = "coolsamar207@gmail.com" },
]
dependencies = [
"feedparser>=6.0.12,<7",
"github3.py==4.0.1",
"requests>=2.18,<3",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Security",
]
[project.urls]
Homepage = "https://github.com/techgaun/github-dorks"
Issues = "https://github.com/techgaun/github-dorks/issues"
[project.scripts]
github-dorks = "github_dorks.cli:main"
[tool.setuptools.dynamic]
version = { attr = "github_dorks.__version__" }
[tool.setuptools.data-files]
github-dorks = ["github-dorks.txt"]