Skip to content

Commit

Permalink
published 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
HenryQuan committed Sep 15, 2022
1 parent d2d51b7 commit 2862fde
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 16 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ Any other arguments are not valid. The program will exit with error code 1. Call
- Run `python3 -m build` to build the package, and it will also be placed in `dist/`
- Install it locally with `pip install wowsunpack --find-links dist`

## Publishing
- Check with `twine check dist/*`
- Upload to TestPyPI before publishing it `twine upload -r testpypi dist/*`
- Publish it with `twine upload dist/*`

***

# World of Warships GameParams to JSON
Expand Down
21 changes: 21 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "wowsunpack"
version = "0.1.6"
readme = "README.md"
authors = [
{name = "Yiheng Quan", email = "development.henryquan@gmail.com"},
]
description = "Unpack World of Warships game params to JSON"
keywords = ["wows", "wws", "unpack", "params"]
requires-python = ">=3.6"
dependencies = ["gnu-mo-files"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: Microsoft :: Windows",
"Topic :: Utilities"
]

[project.urls]
Homepage = "https://github.com/wowsinfo/wows_unpack"
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
gnu-mo-files
wowsunpack
pyinstaller
build
wowsunpack
twine
14 changes: 0 additions & 14 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,21 +1,7 @@
[metadata]
name = wowsunpack
version = 0.0.1
author = Yiheng Quan
author_email = development.henryquan@gmail.com
description = Unpack World of Warships game files
long_description = file: README.md
url = https://github.com/wowsinfo/wows_unpack
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: GNU Affero General Public License v3
Operating System :: Microsoft :: Windows
Topic :: Utilities
keywords = wows, wws, unpack, params

[options]
python_requires = >=3.6
install_requires = gnu-mo-files
include_package_data = True

[options.package_data]
Expand Down

0 comments on commit 2862fde

Please sign in to comment.