-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.83 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "tabulato"
version = "1.0.4"
authors = [
{name = "Crispen Gari", email = "crispengari@gmail.com"},
]
description = "This is a Python package that provides functionality for generating tabulated representations of data with customizable colors and formatting options. It offers a user-friendly interface for creating visually appealing tables in terminal output."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.9"
keywords = ["tabulato", "tables", "pretty-table", "console", "styling", "text-formatting", "CLI", "ANSI", "print", "text-decoration", 'csv', 'tabulate-data' ]
classifiers = [
'Development Status :: 6 - Mature',
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Terminals",
"Topic :: Utilities",
'Programming Language :: Python',
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Operating System :: Unix",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
'Natural Language :: English'
]
[project.urls]
homepage = "https://github.com/CrispenGari/tabulato"
repository = "https://github.com/CrispenGari/tabulato"
documentation = "https://github.com/CrispenGari/tabulato/blob/main/README.md"
changelog = "https://github.com/CrispenGari/tabulato/blob/main/CHANGELOG.md"
issues = "https://github.com/CrispenGari/tabulato/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["tabulato*"]
exclude = ["tabulato.tests*", 'images', 'tests*', 'tabulato/tests', 'example.py']
namespaces = false