29 lines
751 B
TOML
29 lines
751 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0.0", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "gptc"
|
|
version = "3.0.1"
|
|
description = "General-purpose text classifier"
|
|
readme = "README.md"
|
|
authors = [{ name = "Samuel Sloniker", email = "sam@kj7rrv.com"}]
|
|
classifiers = [
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3",
|
|
"Development Status :: 5 - Production/Stable",
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
"Operating System :: OS Independent",
|
|
]
|
|
dependencies = ["emoji"]
|
|
requires-python = ">=3.7"
|
|
|
|
[project.urls]
|
|
Homepage = "https://git.kj7rrv.com/kj7rrv/gptc"
|
|
|
|
[project.scripts]
|
|
gptc = "gptc.__main__:main"
|
|
|
|
[tool.setuptools]
|
|
packages = ["gptc"]
|