pyproject.toml 905 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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_tools"
  8. version = "0.2434.2"
  9. description = "Tui tools"
  10. readme = "README.md"
  11. authors = [
  12. {name = "Louis RIVIERE", email = "louis@riviere.xyz"},
  13. ]
  14. requires-python = ">=3.8"
  15. dependencies = [
  16. "pybrary",
  17. "tx_widgets",
  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-tools'
  32. repository = 'https://notabug.org/dugres/tx_tools'
  33. [tool.setuptools]
  34. include-package-data = false
  35. [tool.setuptools.packages.find]
  36. exclude = ["*test*"]
  37. [project.scripts]
  38. maker = "maker.main:main"