-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
36 lines (31 loc) · 927 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
[tool.poetry]
name = "rhdndat"
version = "2.7.0"
description = "www.romhacking.net update checker"
authors = ["i30817 <[email protected]>"]
license = "GNU General Public License v3.0"
readme = "README.rst"
repository = "https://github.com/i30817/rhdndat"
[tool.poetry.dependencies]
python = "^3.8"
beautifulsoup4 = "^4.10.0"
questionary = "^1.10.0"
typer = "^0.9.0"
colorama = "^0.4.4"
lxml = "^4.9.1"
requests = "^2.31.0"
xattr = [
{ version = "^0.9.9", markers = "sys_platform != 'win32'" },
]
[tool.poetry.scripts]
rhdndat = 'rhdndat.__main__:main'
rhdndat-rn = 'rhdndat.__main__:rename'
[tool.poetry.urls]
"homepage" = 'https://github.com/i30817/rhdndat'
"documentation" = 'https://github.com/i30817/rhdndat#readme'
"Bug Tracker" = 'https://github.com/i30817/rhdndat/issues'
[tool.poetry.dev-dependencies]
pytest = "^7.2.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"