pyproject.toml 792 B

123456789101112131415161718192021222324252627282930313233343536
  1. [build-system]
  2. requires = ['setuptools>=61.0']
  3. build-backend = 'setuptools.build_meta'
  4. [bdist_wheel]
  5. universal = 0
  6. [project]
  7. name = 'teamux'
  8. version = '0.2413.0'
  9. description = 'Tmux wrapper'
  10. readme = 'README.md'
  11. authors = [
  12. {name = 'Louis RIVIERE', email = 'louis@riviere.xyz'},
  13. ]
  14. requires-python = '>=3.10'
  15. keywords = [
  16. 'library',
  17. ]
  18. classifiers = [
  19. 'Development Status :: 3 - Alpha',
  20. 'License :: OSI Approved :: MIT License',
  21. 'Programming Language :: Python :: 3',
  22. 'Operating System :: POSIX :: Linux',
  23. 'Environment :: Console',
  24. 'Intended Audience :: Developers',
  25. ]
  26. license = {text = 'MIT'}
  27. [project.urls]
  28. pypi = 'https://pypi.org/project/teamux'
  29. repository = 'https://notabug.org/dugres/teamux/src/stable'
  30. [tool.setuptools]
  31. include-package-data = false