Spaces:
Runtime error
Runtime error
File size: 514 Bytes
bf88ab3 ae83ec3 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 |
[build-system]
requires = [
"setuptools >= 65",
"wheel >= 0.38"
]
build-backend = "setuptools.build_meta"
[project]
name = "techdocs"
version = "0.1.5"
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"]
[tool.setuptools.package-data]
"*" = ["*.json"] |