-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
36 lines (32 loc) · 1.06 KB
/
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
[tool.poetry]
name = "ipfromwebpage"
version = "1.2.0"
description = "Takes a webpage and outputs all ip addresses it finds"
authors = ["Jay Shepherd <[email protected]>"]
license = "MIT"
readme = 'README.md'
repository = 'https://github.com/shepherdjay/ip-from-webpage'
homepage = 'https://github.com/shepherdjay/ip-from-webpage'
keywords = ['ipfromwebpage']
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
[tool.poetry.dependencies]
python = ">=3.9"
beautifulsoup4 = "^4.4"
netaddr = "^0.8.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3"
pytest-cov = "*"
[tool.poetry.scripts]
ipfromwebpage = 'ipfromwebpage:entrypoint'
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"