forked from K0lb3/Blue-Archive---Asset-Downloader
-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
35 lines (33 loc) · 973 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "BA-AD"
description = "Blue Archive Asset Downloader"
authors = [{name = "Deathemonic", email = "zinth.others@skiff.com"},]
maintainers = [{name = "Deathemonic", email = "zinth.others@skiff.com"}]
version = "1.0.0"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
keywords = ["unity", "asset", "downloader", "bluearchive"]
classifiers = [
"Environment :: X11 Applications",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.10"
]
dependencies = [
'aiohttp>=3.9.5',
'aiofiles>=24.1.0',
'requests>=2.32.3',
'requests-cache>=1.2.1',
'cloudscraper',
'flatbuffers',
'pycryptodome',
'UnityPy',
'rich',
'xxhash'
]
[project.scripts]
baad = "baad.__main__:main"