-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 1009 Bytes
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tab-pal"
version = "0.1.1"
description = "A TUI for adding and editing Tableau custom colour palettes."
authors = [{ name = "Ben Nour", email = "[email protected]" }]
dependencies = ["textual==0.81.0"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">= 3.8"
[project.urls]
homepage = "https://github.com/ben-n93/tab-pal"
repository = "https://github.com/ben-n93/tab-pal"
[tool.setuptools]
packages = ["tab_pal"]
include-package-data = true
package-data = { "tab_pal" = ["tabpal.tcss"] }
[project.scripts]
tab-pal = "tab_pal.tab_pal:main"