|
| 1 | +[build-system] |
| 2 | +requires = [ |
| 3 | + "setuptools~=82.0.0", |
| 4 | + "wheel", |
| 5 | +] |
| 6 | +build-backend = "setuptools.build_meta" |
| 7 | + |
| 8 | +[project] |
| 9 | +name = "get-min-py" |
| 10 | +version = "1.0.0" |
| 11 | +description = "Get the minimum Python version required for a PyPI package." |
| 12 | +authors = [ |
| 13 | + { name = "Adam Lui", email = "adam@kudoai.com" }, |
| 14 | +] |
| 15 | +readme = "docs/README.md" |
| 16 | +license = "MIT" |
| 17 | +license-files = [ |
| 18 | + "docs/LICENSE.md", |
| 19 | +] |
| 20 | +dependencies = [ |
| 21 | + "colorama~=0.4.6 ; platform_system == 'Windows'", |
| 22 | + "json5~=0.13.0", |
| 23 | + "ucs-detect~=2.0.2", |
| 24 | +] |
| 25 | +requires-python = ">=3.8,<4" |
| 26 | +keywords = [ |
| 27 | + "api", |
| 28 | + "auto-detect", |
| 29 | + "classifiers", |
| 30 | + "cli", |
| 31 | + "compatibility", |
| 32 | + "console", |
| 33 | + "dev-tool", |
| 34 | + "minimum-version", |
| 35 | + "package-metadata", |
| 36 | + "pypi", |
| 37 | + "python-version", |
| 38 | + "requires-python", |
| 39 | + "version-check", |
| 40 | +] |
| 41 | +classifiers = [ |
| 42 | + "Development Status :: 5 - Production/Stable", |
| 43 | + "Environment :: Console", |
| 44 | + "Intended Audience :: Developers", |
| 45 | + "Intended Audience :: Information Technology", |
| 46 | + "Intended Audience :: System Administrators", |
| 47 | + "Natural Language :: English", |
| 48 | + "Operating System :: OS Independent", |
| 49 | + "Programming Language :: Python", |
| 50 | + "Programming Language :: Python :: 3", |
| 51 | + "Programming Language :: Python :: 3 :: Only", |
| 52 | + "Programming Language :: Python :: 3.8", |
| 53 | + "Programming Language :: Python :: 3.9", |
| 54 | + "Programming Language :: Python :: 3.10", |
| 55 | + "Programming Language :: Python :: 3.11", |
| 56 | + "Programming Language :: Python :: 3.12", |
| 57 | + "Programming Language :: Python :: 3.13", |
| 58 | + "Programming Language :: Python :: 3.14", |
| 59 | + "Programming Language :: Python :: 3.15", |
| 60 | + "Topic :: Software Development", |
| 61 | + "Topic :: Software Development :: Libraries", |
| 62 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 63 | + "Topic :: Utilities", |
| 64 | + "Topic :: Internet", |
| 65 | + "Topic :: Internet :: WWW/HTTP", |
| 66 | +] |
| 67 | + |
| 68 | +[project.urls] |
| 69 | +Changelog = "https://github.com/adamlui/python-utils/releases/tag/get-min-py-1.0.0" |
| 70 | +Documentation = "https://github.com/adamlui/python-utils/tree/main/get-min-py/docs" |
| 71 | +Funding = "https://github.com/sponsors/adamlui" |
| 72 | +Homepage = "https://github.com/adamlui/python-utils/tree/main/get-min-py/#readme" |
| 73 | +Issues = "https://github.com/adamlui/python-utils/issues" |
| 74 | +"PyPI Stats" = "https://pepy.tech/projects/get-min-py" |
| 75 | +Releases = "https://github.com/adamlui/python-utils/releases" |
| 76 | +Repository = "https://github.com/adamlui/python-utils" |
| 77 | + |
| 78 | +[project.scripts] |
| 79 | +get-min-py = "get_min_py.cli.__main__:main" |
| 80 | +get-min-ver = "get_min_py.cli.__main__:main" |
| 81 | +check-min-py = "get_min_py.cli.__main__:main" |
| 82 | +check-min-ver = "get_min_py.cli.__main__:main" |
| 83 | +getminpy = "get_min_py.cli.__main__:main" |
| 84 | +getminver = "get_min_py.cli.__main__:main" |
| 85 | +checkminpy = "get_min_py.cli.__main__:main" |
| 86 | +checkminver = "get_min_py.cli.__main__:main" |
| 87 | + |
| 88 | +[project.optional-dependencies] |
| 89 | +dev = [ |
| 90 | + "nox>=2026.2.9", |
| 91 | + "remove-json-keys~=1.8.3", |
| 92 | + "tomli~=2.4.0", |
| 93 | + "tomli-w~=1.2.0", |
| 94 | + "translate-messages~=1.8.3", |
| 95 | +] |
| 96 | + |
| 97 | +[tool.setuptools.packages.find] |
| 98 | +where = [ |
| 99 | + "src", |
| 100 | +] |
| 101 | + |
| 102 | +[tool.setuptools.package-data] |
| 103 | +get_min_py = [ |
| 104 | + "data/*.json", |
| 105 | + "data/_locales/en/messages.json", |
| 106 | +] |
0 commit comments