|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=45", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "fire" |
| 7 | +version = "0.7.1" |
| 8 | +description = "A library for automatically generating command line interfaces." |
| 9 | +readme = "README.md" |
| 10 | +license = {text = "Apache-2.0"} |
| 11 | +authors = [ |
| 12 | + {name = "David Bieber", email = "dbieber@google.com"} |
| 13 | +] |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 4 - Beta", |
| 16 | + "Intended Audience :: Developers", |
| 17 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 18 | + "Programming Language :: Python", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3.7", |
| 21 | + "Programming Language :: Python :: 3.8", |
| 22 | + "Programming Language :: Python :: 3.9", |
| 23 | + "Programming Language :: Python :: 3.10", |
| 24 | + "Programming Language :: Python :: 3.11", |
| 25 | + "Programming Language :: Python :: 3.12", |
| 26 | + "Programming Language :: Python :: 3.13", |
| 27 | + "Operating System :: OS Independent", |
| 28 | + "Operating System :: POSIX", |
| 29 | + "Operating System :: MacOS", |
| 30 | + "Operating System :: Unix", |
| 31 | +] |
| 32 | +keywords = ["command", "line", "interface", "cli", "python", "fire", "interactive", "bash", "tool"] |
| 33 | +requires-python = ">=3.7" |
| 34 | +dependencies = [ |
| 35 | + "termcolor", |
| 36 | +] |
| 37 | + |
| 38 | +[project.urls] |
| 39 | +Homepage = "https://github.com/google/python-fire" |
| 40 | +Repository = "https://github.com/google/python-fire" |
| 41 | + |
| 42 | +[project.optional-dependencies] |
| 43 | +test = [ |
| 44 | + "setuptools<=80.9.0", |
| 45 | + "pip", |
| 46 | + "pylint<3.3.7", |
| 47 | + "pytest<=8.3.5", |
| 48 | + "pytest-pylint<=1.1.2", |
| 49 | + "pytest-runner<7.0.0", |
| 50 | + "termcolor<3.2.0", |
| 51 | + "hypothesis<6.133.0", |
| 52 | + "levenshtein<=0.27.1", |
| 53 | +] |
| 54 | + |
| 55 | +[tool.setuptools.packages.find] |
| 56 | +include = ["fire*"] |
| 57 | + |
| 58 | +[tool.setuptools.package-data] |
| 59 | +fire = ["console/*"] |
| 60 | + |
| 61 | +[tool.pytest.ini_options] |
| 62 | +addopts = [ |
| 63 | + "--ignore=fire/test_components_py3.py", |
| 64 | + "--ignore=fire/parser_fuzz_test.py" |
| 65 | +] |
| 66 | + |
| 67 | +[tool.pytype] |
| 68 | +inputs = "." |
| 69 | +output = ".pytype" |
0 commit comments