Metadata-Version: 2.1
Name: pbscraper
Version: 1.0.22
Summary: A small example package
Project-URL: Homepage, https://github.com/StevenCafe/PickBooks-Lib-Scraper
Project-URL: Bug Tracker, https://github.com/StevenCafe/PickBooks-Lib-Scraper/issues
Author-email: StevenCafe <pinylnln@google.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8.10
Requires-Dist: bs4
Requires-Dist: lxml
Requires-Dist: requests
Description-Content-Type: text/markdown

# Example Package

This is a simple example package. You can use
[Github-flavored Markdown](https://guides.github.com/features/mastering-markdown/)
to write your content.

# How to build package

This is a note for how to packaging a project into Pypi

- Root directory should contain __init__.py file, means it's a library
- Prepare pyporject.toml
- python -m build 產生dist/ will load pyproject.toml
- pip install twine
- Prepare Pypi Account
- save .pypirc 
- twine upload --config-file .pypirc dist/*

PS. package_dir={'mypkg': 'src/mypkg'},
PS. Under root should have a folder of package name as same as project name.