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 instead of setup.py #234

Merged
merged 1 commit into from
Mar 29, 2023
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
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"