Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds client #3

Open
wants to merge 8 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,23 @@ To distribute a new version of FHIR Aggregator to PyPI, follow these steps:
2. **Update the version number** in `setup.py` according to semantic versioning.
3. **Build the package**. Run the following command from the root of the project:


```commandline
python setup.py sdist bdist_wheel
# update pypi

# pypi credentials - see https://twine.readthedocs.io/en/stable/#environment-variables

export TWINE_USERNAME= # the username to use for authentication to the repository.
export TWINE_PASSWORD= # the password to use for authentication to the repository.

# this could be maintained as so: export $(cat .env | xargs)

rm -r build/
rm -r dist/
python3 setup.py sdist bdist_wheel
twine upload dist/*
```

This command generates distribution archives in the `dist` directory.
4. **Upload the package to PyPI** using [twine](https://pypi.org/project/twine/):
Note: You must have permissions to upload to the project on PyPI and may need to authenticate with your PyPI account.
Expand Down
Loading