-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (39 loc) · 1.05 KB
/
pyproject.toml
File metadata and controls
42 lines (39 loc) · 1.05 KB
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
42
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ps4_updates"
version = "1.1.0"
authors = [
{ name="andshrew", email="7409326+andshrew@users.noreply.github.com" },
]
description = "A simple package for accessing PS4 title update information"
readme = "README.md"
license = "MIT"
license-files = ["LICEN[CS]E.*"]
requires-python = ">=3.8"
dependencies = [
"requests>=2.31",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.hatch.build]
exclude = [
".devcontainer/",
".github/",
"docs/",
".gitignore",
"requirements.txt",
"dist/",
"data_dump/",
"app.py"
]
[project.urls]
"Homepage" = "https://github.com/andshrew/PS4-Updates-Python"
"Repository" = "https://github.com/andshrew/PS4-Updates-Python.git"
"GitHub" = "https://github.com/andshrew/PS4-Updates-Python"
"Issues" = "https://github.com/andshrew/PS4-Updates-Python/issues"
"Changelog" = "https://github.com/andshrew/PS4-Updates-Python/releases"