-
Notifications
You must be signed in to change notification settings - Fork 163
/
pyproject.toml
39 lines (34 loc) · 1.1 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["octosuite"]
[project]
name = "octosuite"
version = "3.1.1"
description = "Advanced GitHub OSINT Framework"
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["github", "python", "github-api", "framework", "osint", "osint-framework", "osint-python", "osint-tool"]
authors = [{name = "Richard Mwewa", email = "[email protected]"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Natural Language :: English"
]
dependencies = [
"rich",
"psutil",
"requests",
"pyreadline3",
]
[project.urls]
homepage = "https://github.com/bellingcat/octosuite"
documentation = "https://github.com/bellingcat/octosuite/wiki"
repository = "https://github.com/bellingcat/octosuite.git"
[project.scripts]
octosuite = "octosuite.main:octosuite"