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

Changed: use pyproject.toml for dependencies #236

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 11 additions & 8 deletions draft-pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "ipyvizzu"
version = "0.15.0"
description = "Build animated charts in Jupyter Notebook and similar environments with a simple Python syntax"
license = "Apache-2.0"
authors = [{name = "Vizzu Inc.", email = "hello@vizzuhq.com"}]
authors = ["Vizzu Inc. <hello@vizzuhq.com>"]
readme = "README.md"
repository = "https://github.com/vizzuhq/ipyvizzu"
documentation = "https://ipyvizzu.vizzuhq.com"
Expand Down Expand Up @@ -39,13 +39,16 @@ classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
requires-python = ">=3.6"
dependencies = [
"IPython",
"jsonschema",
"pandas",
"fugue>=0.8.1"
]

[tool.poetry.dependencies]
IPython = "^7.31.0"
jsonschema = "^4.0.1"
pandas = { version = "^1.2.1", python = "^3.8" }
python = "^3.7"
fugue = { version = "^0.8.1", python = "^3.7", optional = true}

[tool.poetry.extras]
extras = ["fugue"]

[tool.poetry.urls]
"Tracker" = "https://github.com/vizzuhq/ipyvizzu/issues"