-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
33 lines (30 loc) · 1008 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "taggr"
version = "0.2.0"
authors = [
{ name="Matheus Afonso Martins Moreira", email="[email protected]" },
]
description = "Tag anything with hierarchical tags and key/value pairs"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Environment :: Console",
"Development Status :: 1 - Planning",
"Topic :: Database :: Front-Ends",
"Topic :: Utilities",
"Topic :: Other/Nonlisted Topic",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
]
[project.scripts]
taggr = "taggr.cli:main"
tag = "taggr.cli:main"
[project.urls]
"Repository" = "https://github.com/matheusmoreira/taggr"
"Issues" = "https://github.com/matheusmoreira/taggr/issues"