We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
After building the DataFed project, the Python CLI module must be packaged and deployed to PyPi or TestPyPi.
To package, run the following command from the ...DataFed/build/python/datafed_pkg directory:
python3 setup.py sdist bdist_wheel
To deploy to TestPyPi, run:
python3 -m twine upload --skip-existing --repository-url https://test.pypi.org/legacy/ dist/*
To deploy to PyPi, run:
python3 -m twine upload --skip-existing dist/*