mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
By adding a setup.py file, users may install cmpcodesize to their PATH, by running `python utils/cmpcodesize/setup.py install`. Should the Swift project choose to do so, this package may also be uploaded to the Python Package Index (https://pypi.python.org/pypi). Doing so would allow anyone with an Internet connection to install cmpcodesize by running `pip install cmpcodesize`. Setuptools also provides a convenient way to run unit tests (yet to be added as of this commit).
27 lines
268 B
Plaintext
27 lines
268 B
Plaintext
# Compile artifacts
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
|
|
# Distribution/packaging
|
|
.Python
|
|
env/
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
|
|
# Installer logs
|
|
pip-log.txt
|
|
pip-delete-this-directory.txt
|