Skip to content

Commit

Permalink
Added package instruction to pyproject.toml and updated README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Oct 18, 2023
1 parent bd808a9 commit 929ea17
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
# Exasol Data Science Sandbox

# Overview
## Overview

This project provides an automated mechanism to build and export virtual machines images (AWS AMI, VMDK,...)
which can be used to develop new script-languages container for the Exasol DB.
enabling users to try out data science algorithms in Jupyter notebooks connected to the the Exasol database.

## Where to find the VM images

The release process will automatically store the links to the images in the [release notes](https://github.com/exasol/script-languages-developer-sandbox/releases/latest), as there will be a specific AMI per release.
The release process will automatically store the links to the images in the [release notes](https://github.com/exasol/data-science-sandbox/releases/latest), as there will be a specific AMI per release.
Please check the user guide about details of the image.

## Links
Expand Down
20 changes: 18 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,30 @@
[tool.poetry]
name = "exasol-data-science-sandbox"
version = "0.1.0"
description = "Manages virtual machines for data science sandbox."

description = "Manages virtual machines for the data science sandbox."
packages = [ {include = "exasol"}, ]
license = "MIT"
authors = [
"Torsten Kilias <[email protected]>",
"Mikhail Beck <[email protected]>",
"Christoph Kuhnke <[email protected]>"
]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 3 - Alpha",
"Framework :: Jupyter :: JupyterLab :: 3",
"License :: OSI Approved :: MIT License",
]
readme = "README.md"
license = "MIT"


[tool.poetry.urls]
"Homepage" = "https://github.com/exasol/data-science-sandbox"
"Documentation" = "https://github.io/exasol/data-science-sandbox"
"Source" = "https://github.io/exasol/data-science-sandbox"
"Issues" = "https://github.io/exasol/data-science-sandbox/issues"


[tool.poetry.dependencies]
python = ">=3.8.0,<4.0"
Expand Down

0 comments on commit 929ea17

Please sign in to comment.