-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
32 lines (29 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wpdetect"
version = "1.4.10"
dependencies = [
"pyfiglet", "requests", "click"
]
authors = [
{ name="S M Mahmudul Hasan", email="[email protected]" },
]
description = "A WordPress detection tool, detects if a website is running WordPress"
readme = "README.md"
requires-python = ">=3.4"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
'Development Status :: 5 - Production/Stable',
'Topic :: Software Development :: Build Tools',
'Intended Audience :: Developers',
]
[project.urls]
"Homepage" = "https://github.com/IamLizu/wpdetect"
"Bug Tracker" = "https://github.com/IamLizu/wpdetect/issues"
"Changelog" = "https://github.com/IamLizu/wpdetect/blob/master/CHANGELOG.md"
[project.scripts]
wpdetect = "wpdetect.__main__:main"