|
| 1 | +[build-system] |
| 2 | +build-backend = "setuptools.build_meta" |
| 3 | +requires = [ |
| 4 | + "setuptools>=61.2", |
| 5 | +] |
| 6 | + |
| 7 | +[project] |
| 8 | +name = "python-docs-bootstrapper" |
| 9 | +version = "0.1.1" |
| 10 | +description = "Bootstrapper for Python documentation translations" |
| 11 | +readme = "README.md" |
| 12 | +keywords = [ |
| 13 | + "automation", |
| 14 | + "CLI", |
| 15 | + "documentation", |
| 16 | + "i18n", |
| 17 | + "python-docs", |
| 18 | + "sphinx", |
| 19 | + "translation", |
| 20 | + "utilities", |
| 21 | +] |
| 22 | +license = {text = "MIT"} |
| 23 | +authors = [{name = "egeakman", email = "me@egeakman.dev"}] |
| 24 | +requires-python = ">=3.10" |
| 25 | +classifiers = [ |
| 26 | + "Development Status :: 5 - Production/Stable", |
| 27 | + "Environment :: Console", |
| 28 | + "License :: OSI Approved :: MIT License", |
| 29 | + "Operating System :: MacOS :: MacOS X", |
| 30 | + "Operating System :: Microsoft :: Windows", |
| 31 | + "Operating System :: POSIX :: Linux", |
| 32 | + "Programming Language :: Python :: 3 :: Only", |
| 33 | + "Programming Language :: Python :: 3.10", |
| 34 | + "Programming Language :: Python :: 3.11", |
| 35 | + "Programming Language :: Python :: 3.12", |
| 36 | + "Topic :: Utilities", |
| 37 | +] |
| 38 | +dependencies = [ |
| 39 | + "sphinx==4.5", |
| 40 | +] |
| 41 | +[project.urls] |
| 42 | +Releases = "https://github.com/egeakman/python-docs-bootstrapper/releases" |
| 43 | +Homepage = "https://github.com/egeakman/python-docs-bootstrapper" |
| 44 | +Issues = "https://github.com/egeakman/python-docs-bootstrapper/issues" |
| 45 | +[project.scripts] |
| 46 | +bootstrapper = "bootstrapper.bootstrapper:main" |
| 47 | + |
| 48 | +[tool.setuptools] |
| 49 | +include-package-data = true |
| 50 | + |
| 51 | +[tool.setuptools.packages.find] |
| 52 | +where = ["."] |
| 53 | +namespaces = false |
| 54 | + |
| 55 | +[tool.setuptools.package-data] |
| 56 | +bootstrapper = [ |
| 57 | + "data/.gitignore", |
| 58 | + "data/Makefile", |
| 59 | + "data/README.md", |
| 60 | +] |
0 commit comments