Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Yasuo414 authored Jul 17, 2024
1 parent 1638f3b commit 9535098
Showing 1 changed file with 0 additions and 39 deletions.
39 changes: 0 additions & 39 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,42 +39,3 @@ For more detailed usage instructions, please refer to the documentation.
## License

This project is licensed under the CC0 1.0 Universal - see the LICENSE file for details.

To build the wheel, follow these steps:

1. Make sure you have the latest versions of setuptools and wheel installed:
```
pip install --upgrade setuptools wheel
```

2. Navigate to the root directory of your project (where `setup.py` is located) in the command line.

3. Run the following command to build the wheel:
```
python setup.py sdist bdist_wheel
```

This will create a `dist` directory in your project folder, containing the wheel file (`.whl`) and a source distribution (`.tar.gz`).

To install the wheel locally for testing, you can use:
```
pip install dist/ustparser-0.1.0-py3-none-any.whl
```

Replace `ustparser-0.1.0-py3-none-any.whl` with the actual name of the wheel file generated.

If you want to upload your package to PyPI, you'll need to create an account on https://pypi.org/ and use the `twine` tool:

1. Install twine:
```
pip install twine
```

2. Upload your distributions:
```
twine upload dist/*
```

Remember to update the version number in both `__init__.py` and `setup.py` when you make changes to your library.

This setup will allow you to compile your USTParser library into a Python wheel, which can be easily distributed and installed using pip. Let me know if you need any further assistance or explanations!

0 comments on commit 9535098

Please sign in to comment.