gptc/pyproject.toml

29 lines
751 B
TOML
Raw Normal View History

2022-07-14 19:18:16 -07:00
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gptc"
2022-11-25 19:44:32 -08:00
version = "3.0.1"
2022-07-14 19:18:16 -07:00
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",
2022-11-23 17:48:46 -08:00
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
2022-07-14 19:18:16 -07:00
"Operating System :: OS Independent",
]
2022-11-23 17:48:46 -08:00
dependencies = ["emoji"]
2022-07-14 19:18:16 -07:00
requires-python = ">=3.7"
[project.urls]
Homepage = "https://git.kj7rrv.com/kj7rrv/gptc"
[project.scripts]
gptc = "gptc.__main__:main"
[tool.setuptools]
packages = ["gptc"]