-
-
Notifications
You must be signed in to change notification settings - Fork 218
/
pyproject.toml
39 lines (35 loc) · 939 Bytes
/
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>=42",
]
build-backend = "setuptools.build_meta"
[project]
name = "nexfil"
description = "OSINT tool for finding profiles by username"
license = {text = "MIT"}
authors = [
{name="thewhiteh4t", email="[email protected]"}
]
requires-python = ">=3.10"
classifiers = [
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"aiohttp",
"tldextract",
"requests",
"packaging",
"undetected_chromedriver",
]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
version = {attr = "nexfil.cli.SCRIPT_V"}
[project.scripts]
nexfil = "nexfil.cli:cli"
[project.urls]
Repository = "https://github.com/thewhiteh4t/nexfil"