cirosantilli / vcdvcd

Python Verilog value change dump (VCD) parser library + the nifty vcdcat VCD command line pretty printer.
Other
54 stars 21 forks source link

PyPi package #1

Closed cirosantilli closed 5 years ago

cirosantilli commented 5 years ago

This has been proposed.

I've never done it before, do I need to make any changes in the code to be able to upload to PyPi? If so, please send a pull request with the changes, and then I'll upload.

Otherwise, I'll upload soon.

bmpenuelas commented 5 years ago

Hi, I just submitted PR #2 with the required modifications.

Here is a short guide to packaging a module and uploading it to PyPi.

With this PR everything is ready and the test upload was successful, you just need to: pip install setuptools setuptools wheel twine python setup.py sdist bdist_wheel (run in the same dir as setup.py) twine upload dist/* (and provide your PyPi credentials)

Please let me know if you need anything else.