|
1 | 1 | [project] |
2 | 2 | name = "dash-dashkit" |
3 | | -version = "1.0.0" |
4 | 3 | description = "Modern dashboard components for Dash applications" |
5 | 4 | readme = "README.md" |
6 | 5 | requires-python = ">=3.10" |
| 6 | +dynamic = ["version"] |
7 | 7 | dependencies = [ |
8 | 8 | "dash>=2.17.0", |
9 | 9 | "dash-bootstrap-components>=1.5.0", |
10 | 10 | "plotly>=5.17.0", |
11 | | - "dashkit_table>=1.0.0", |
12 | | - "dashkit_kiboui>=1.0.0", |
13 | | - "dashkit_shadcn>=1.0.0", |
| 11 | + "dashkit_table>=1.0.1", |
| 12 | + "dashkit_kiboui>=1.0.1", |
| 13 | + "dashkit_shadcn>=1.0.1", |
14 | 14 | "dash-iconify>=0.1.2", |
15 | 15 | "dash-mantine-components>=2.1.0", |
16 | 16 | "pyyaml>=6.0.2", |
17 | 17 | ] |
| 18 | +keywords = ["dash", "plotly", "dashboard", "components", "ui", "tailwind", "handsontable", "charts"] |
| 19 | +license = {text = "MIT"} |
| 20 | +authors = [{ name = "Dashkit Team" }] |
| 21 | +classifiers = [ |
| 22 | + "License :: OSI Approved :: MIT License", |
| 23 | + "Programming Language :: Python :: 3", |
| 24 | + "Programming Language :: Python :: 3 :: Only", |
| 25 | + "Programming Language :: Python :: 3.10", |
| 26 | + "Programming Language :: Python :: 3.11", |
| 27 | + "Programming Language :: Python :: 3.12", |
| 28 | + "Framework :: Dash", |
| 29 | + "Intended Audience :: Developers", |
| 30 | + "Topic :: Software Development :: User Interfaces", |
| 31 | +] |
| 32 | + |
| 33 | +[project.urls] |
| 34 | +Homepage = "https://pypi.org/project/dash-dashkit/" |
| 35 | +Source = "https://github.com/iamgp/dash_dashkit" |
| 36 | +Issues = "https://github.com/iamgp/dash_dashkit/issues" |
18 | 37 |
|
19 | 38 | [project.optional-dependencies] |
20 | 39 | dev = ["ruff>=0.1.0", "basedpyright>=1.10.0"] |
21 | 40 |
|
22 | 41 | [build-system] |
23 | | -requires = ["hatchling"] |
| 42 | +requires = ["hatchling", "uv-dynamic-versioning"] |
24 | 43 | build-backend = "hatchling.build" |
25 | 44 |
|
| 45 | +[tool.hatch.version] |
| 46 | +source = "uv-dynamic-versioning" |
| 47 | + |
| 48 | +[tool.uv-dynamic-versioning] |
| 49 | +vcs = "git" |
| 50 | +style = "pep440" |
| 51 | +bump = true |
| 52 | + |
26 | 53 | [tool.hatch.build] |
27 | 54 | include = [ |
28 | 55 | "src/dashkit/assets/style.css", |
|
0 commit comments