-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added package instruction to pyproject.toml and updated README.md
- Loading branch information
Showing
2 changed files
with
22 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|