-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (44 loc) · 1.38 KB
/
Copy pathpyproject.toml
File metadata and controls
47 lines (44 loc) · 1.38 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
43
44
45
46
47
[project]
name = "starfieldsaver"
version = "0.2.7.dev"
description = "Starfield automatic quicksave and backup utility"
authors = [{ name = "Danny Stewart", email = "danny@stewart.cc" }]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.12,<3.14"
dependencies = [
"natsort (>=8.4.0,<9.0.0)",
"numpy (>=2.4.6,<3.0.0)",
"polykit (>=0.15.0)",
"psutil (>=7.2.2,<8.0.0)",
"pygame (>=2.6.1,<3.0.0)",
"pynput (>=1.8.2,<2.0.0)",
"pywin32 (>=311,<312) ; sys_platform == \"win32\"",
"toml (>=0.10.2,<0.11.0)",
"tzdata (>=2026.2,<2027.0)",
"urllib3 (>=2.7.0,<3.0.0)",
"watchdog (>=6.0.0,<7.0.0)",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Games/Entertainment",
"Topic :: Games/Entertainment :: Role-Playing",
]
[tool.poetry.group.dev.dependencies]
ruff = "^0.15.14"
mypy = "^2.1.0"
pyinstaller = "^6.20.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[project.scripts]
starfieldsaver = "starfieldsaver.main:main"