-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (76 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
81 lines (76 loc) · 1.81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools >= 61.2.0"]
build-backend = "setuptools.build_meta"
[project]
name = "chartlets"
dynamic = ["version", "readme"]
authors = [
{name = "chartlets Development Team"}
]
description = "Backend for server-configured UI contributions."
keywords = [
"dashboard", "charts", "vega", "altair", "plots"
]
license = {text = "MIT"}
requires-python = ">=3.10,<3.14"
dependencies = []
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Typing :: Typed",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Operating System :: MacOS",
]
[tool.setuptools.dynamic]
version = {attr = "chartlets.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
[tool.setuptools.packages.find]
exclude = [
"tests",
"demo",
"docs"
]
[project.optional-dependencies]
opt = [
"altair",
]
dev = [
"altair",
"black",
"flake8",
"pytest",
"pytest-cov",
"requests-mock",
"twine",
"build",
"hatch"
]
doc = [
"mkdocs",
"mkdocs-material",
"mkdocstrings",
"mkdocstrings-python"
]
demo = [
"altair",
"pyaml",
"pandas",
"tornado",
]
[project.urls]
Documentation = "https://bcdev.github.io/chartlets"
Repository = "https://github.com/bcdev/chartlets"
Changelog = "https://github.com/bcdev/chartlets/blob/main/chartlets.py/CHANGES.md"
# Not yet:
#Issues = "https://github.com/bcdev/chartlets/issues"