diff --git a/.gitignore b/.gitignore index 682560c..40b3857 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,7 @@ __pycache__ # Editor files *.vscode +.idea # Mac .DS_Store diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..e69de29 diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1a4f28d..2f83adc 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ ## Setting up dev environment -Create a conda environement and install dev requirements +Create a conda environment and install dev requirements ```sh conda create --name databricks-ai-dev-env python=3.10 @@ -16,26 +16,3 @@ If you are working with integration packages install them as well ```sh pip install -e "integrations/langchain[dev]" ``` - -## Publishing to PyPI - -Note: this section is for maitainers only. - -We recommend first uploading to test-PyPI - -### Publishing core package - - -```sh -pip install build -python3 -m build --wheel -twine upload dist/* -``` - -### Publishing integration packages - -```sh -cd integrations/langchain -python3 -m build --wheel -twine upload dist/* -```