-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (36 loc) · 964 Bytes
/
Copy pathpyproject.toml
File metadata and controls
41 lines (36 loc) · 964 Bytes
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
[project]
name = "pymetasec"
version = "1.3.0"
description = "PyMeta is a Python3 rewrite of PowerMeta for metadata extraction from files found via Google and Bing searches."
authors = [
{ name = "m8sec" }
]
readme = "README.md"
license = {text = "GPL-3.0-or-later"}
requires-python = ">=3.6"
classifiers = [
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Security"
]
dependencies = [
"requests>=2.28.1",
"bs4>=0.0.1",
"tldextract>=3.0.0",
"lxml>=4.9.0"
]
[project.urls]
Homepage = "https://github.com/m8sec/pymeta"
[tool.setuptools.packages.find]
where = ["."]
include = ["pymeta*"]
exclude = ["tests*"]
[tool.setuptools.package-data]
pymeta = ["resources/*"]
[project.scripts]
pymeta = "pymeta:main"
pymetasec = "pymeta:main"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"