pyproject.toml 937 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. [build-system]
  2. requires = ["setuptools>=61.0"]
  3. build-backend = "setuptools.build_meta"
  4. [bdist_wheel]
  5. universal = 0
  6. [project]
  7. name = "tx_widgets"
  8. version = "0.2442.2"
  9. description = "Textual Widgets collections."
  10. readme = "README.md"
  11. authors = [
  12. {name = "Louis RIVIERE", email = "louis@riviere.xyz"},
  13. ]
  14. requires-python = ">=3.8"
  15. dependencies = [
  16. "textual",
  17. "pybrary",
  18. ]
  19. keywords = [
  20. 'util',
  21. ]
  22. classifiers = [
  23. "Development Status :: 3 - Alpha",
  24. "Programming Language :: Python :: 3",
  25. "Operating System :: POSIX :: Linux",
  26. "Environment :: Console",
  27. "Intended Audience :: Developers",
  28. "License :: OSI Approved :: MIT License",
  29. ]
  30. [project.urls]
  31. pypi = 'https://pypi.org/project/tx-widgets'
  32. repository = 'https://helixteamhub.cloud/dull-pot-216/projects/projects/repositories/tx_widgets/tree/alpha'
  33. [tool.setuptools]
  34. include-package-data = false
  35. [tool.setuptools.packages.find]
  36. exclude = ["*test*"]