Skip to content

Commit

Permalink
Merge pull request #234 from katehyerinjeon/poetry-dev
Browse files Browse the repository at this point in the history
Add pyproject.toml
  • Loading branch information
veghdev committed Mar 29, 2023
2 parents 751ab43 + e50d09f commit c533a23
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools"
]

[tool.poetry]
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 = "David Vegh", email = "YOUR_EMAIL"}]
readme = "README.md"
repository = "https://github.com/vizzuhq/ipyvizzu"
documentation = "https://ipyvizzu.vizzuhq.com"
keywords = [
"jupyter",
"charts",
"animation",
"ipython",
"graphs",
"storytelling",
"data-visualization",
"plotting"
]
packages = [{ include = "ipyvizzu", from = "src/ipyvizzu" }, { include = "ipyvizzu.integrations" }]
classifiers = [
"Environment :: Console",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3"
]
requires-python = ">=3.6"
dependencies = [
"IPython",
"jsonschema",
"pandas",
"fugue>=0.8.1"
]

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

0 comments on commit c533a23

Please sign in to comment.