1
0
Fork 0
tinyparrot/pyproject.toml

67 lines
1.5 KiB
TOML

[build-system]
requires = [
"setuptools>=45",
"wheel",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "tinyparrot"
dynamic = ["version"]
authors = [
{name = "Jeff Moe", email = "moe@parrot.codes"},
]
description = "tinygrad for parrot."
readme = "README.md"
requires-python = ">=3.9"
keywords = [
"python",
]
license = {text = "MIT"}
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = [
"tinygrad @ git+https://github.com/tinygrad/tinygrad.git",
"sentencepiece",
"protobuf",
# Code formatting
"black",
# Documentation dependencies
"polib",
"pycountry",
"requests",
"sphinx",
"sphinxcontrib-excel-table",
"sphinxcontrib-markdown",
"sphinx-autobuild",
"sphinx-autodoc-typehints",
"sphinx-intl",
"sphinx-notfound-page",
"sphinx-rtd-theme",
]
[project.urls]
Homepage = "https://parrot.codes"
Documentation = "https://spacecruft.org/deepcrayon/tinyparrot"
Repository = "https://spacecruft.org/deepcrayon/tinyparrot"
Issues = "https://spacecruft.org/deepcrayon/tinyparrot/issues"
Changelog = "https://spacecruft.org/deepcrayon/tinyparrot/raw/branch/main/CHANGELOG.txt"
[tool.setuptools.packages.find]
namespaces = true
where = ["src"]
[tool.setuptools_scm]
write_to = "src/tinyparrot/_version.py"
[project.scripts]
tinyparrot = "tinyparrot.tinyparrot_cli:main"
tinyparrot-llama = "tinyparrot.tinyparrot_llama:main"