Metadata-Version: 2.4
Name: jack-psak
Version: 0.0.0
Summary: A small tool kit that is still growing.
Author-email: Jack1412 <28532665@qq.com>
License: MIT
Project-URL: Homepage, https://github.com/Jack1412/Python-Swiss-army-Knife
Project-URL: Issues, https://github.com/Jack1412/Python-Swiss-army-Knife/issues
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: test
Requires-Dist: pytest>=7; extra == "test"
Provides-Extra: dev
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Dynamic: license-file

# Python-Swiss-army-Knife

Python codebase for normal usage.

A small tool kit that is still growing

[DEV Installation]
python -m pip install -e .

[Generating distribution archives]
python3 -m build

[Uploading the distribution archives]
python3 -m pip install --upgrade twine

Note: token use PyPI not TestPyPI
python3 -m twine upload dist/*


[Installing your newly uploaded package]
python3 -m pip install --index-url https://test.pypi.org/simple/ --no-deps example-package-YOUR-USERNAME-HERE

[Reference]
https://packaging.python.org/en/latest/tutorials/packaging-projects/
