forked from K0lb3/Blue-Archive---Asset-Downloader
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: project version bump, moved from pip to uv
- moved from pip to uv for more faster packaging installation - bump baad version from 1.0.0 to 2.1.0 - remove unnessary files - updated readme
- Loading branch information
1 parent
8a42576
commit 1fb1392
Showing
7 changed files
with
48 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
__version__ = '1.0.0' | ||
__version__ = '2.1.0' |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,28 @@ | ||
[build-system] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "BA-AD" | ||
version = "2.1.0" | ||
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' | ||
"aiofiles>=24.1.0", | ||
"aiohttp>=3.10.10", | ||
"cloudscraper>=1.2.71", | ||
"flatbuffers>=24.3.25", | ||
"pycryptodome>=3.21.0", | ||
"requests-cache>=1.2.1", | ||
"requests>=2.32.3", | ||
"rich>=13.9.4", | ||
"unitypy>=1.20.12", | ||
"xxhash>=3.5.0", | ||
] | ||
|
||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = ["baad"] | ||
|
||
[project.scripts] | ||
baad = "baad.__main__:main" |