1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "chartkick"
version = "1.1.0"
description = "Create beautiful JavaScript charts with one line of Python"
readme = "README.md"
authors = [
{name = "Andrew Kane", email = "andrew@ankane.org"}
]
license = {text = "MIT"}
requires-python = ">= 3.9"
[project.urls]
Homepage = "https://github.com/ankane/chartkick.py"
[tool.setuptools.package-data]
chartkick = ["licenses/*", "django/static/chartkick/*"]
|