-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
31 lines (27 loc) · 863 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "huntsman"
version = "0.5.2"
authors = [
{name = "mlcsec", email = "mlcsec@proton.me"},
]
description = "Email enumerator, validator, and username generator for the hunter.io, snov.io, and skrapp.io APIs"
readme = "README.md"
requires-python = ">=3.6"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Topic :: Security",
]
[project.urls]
"Homepage" = "https://github.com/mlcsec/huntsman"
[project.scripts]
huntsman = "huntsman.__main__:main"
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}