Spaces:
Runtime error
Runtime error
File size: 554 Bytes
bf88ab3 aa7111b bf88ab3 aa7111b bf88ab3 aa7111b bf88ab3 |
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 |
[build-system]
requires = [
"setuptools >= 65",
"wheel >= 0.38",
"tqdm >= 4.66.1"
]
build-backend = "setuptools.build_meta"
[project]
name = "techdocs"
version = "0.2.0"
description = "Code documentation generation CLI App"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{"name" = "test", "email" = "[email protected]"},
]
dependencies = [
"requests",
]
scripts = {techdocs = "techdocs.cli:main"}
[tool.setuptools]
packages = ["techdocs", "techdocs.utils"]
[tool.setuptools.package-data]
"*" = ["*.json"] |