Falldog / pyconcrete

Protect your python script, encrypt it as .pye and decrypt when import it
Apache License 2.0
692 stars 149 forks source link

How work with pip to install pye library? #102

Closed dotmitsu closed 1 year ago

dotmitsu commented 1 year ago

Our steps 1) We installed pyconcrete 2) We encrypted our library by this command pyconcrete-admin.py compile --source=/home/foo/foo/bar --pye 3) We built our library by command python3 ./setup.py sdist 4) We dowloaded library to our repository and then try to install using pip 5) pip install --no-cache-dir --upgrade --upgrade-strategy only-if-needed --extra-index-url https://pypi:foo@nexus.bar.ru/repository/pye-test/simple/ bar 6) pip wrote that package successfully installed, but files are absent in package directory

How can we use pyconcrete to encrypt our package and then install with pip?