-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
41 lines (37 loc) · 1.2 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
37
38
39
40
41
[tool.poetry]
name = "bf1chs"
version = "v0.7.0"
description = "Toolbox for BF1CHS project."
authors = ["MaxMixAlex <[email protected]>"]
license = "GPL-3.0"
readme = "README.md"
repository = "https://github.com/BF1CHS/bf1chs"
keywords = ["Frostbite", "entertainment", "reverse engineering", "game development", "localization", "Simplified Chinese"]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Topic :: Games/Entertainment",
"Natural Language :: Chinese (Simplified)"
]
[tool.poetry.scripts]
bf1chs = "bf1chs.__main__:main"
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.31.0"
python-dateutil = "^2.8.2"
rich = "^13.7.0"
inquirerpy = "^0.3.4"
flammenwerfer = "^0.1.9"
[tool.poetry.group.dev.dependencies]
types-requests = "^2.31.0.10"
nuitka = "^1.9.3"
types-python-dateutil = "^2.8.19.20240106"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"