mirror of
https://github.com/bellingcat/octosuite.git
synced 2026-06-08 03:18:35 +03:00
Added line `[tool.setuptools]`. Fixes error that might be returned during compilation if there's more than one directory in the project's root directory: error: Multiple top-level packages discovered in a flat-layout
40 lines
1.1 KiB
TOML
40 lines
1.1 KiB
TOML
[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 = "rly0nheart@duck.com"}]
|
|
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"
|