pyproject.toml 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. [build-system]
  2. requires = ['setuptools>=61.0']
  3. build-backend = 'setuptools.build_meta'
  4. [bdist_wheel]
  5. universal = 0
  6. [project]
  7. name = 'setux_actions'
  8. version = '0.2503.1'
  9. dynamic = ['readme']
  10. description = 'System deployment'
  11. authors = [
  12. {name = 'Louis RIVIERE', email = 'louis@riviere.xyz'},
  13. ]
  14. requires-python = ">=3.9"
  15. dependencies = [
  16. 'setux_core>=0.2502.0',
  17. 'pybrary>=0.2452.0',
  18. ]
  19. keywords = [
  20. 'utility',
  21. ]
  22. classifiers = [
  23. 'Development Status :: 3 - Alpha',
  24. 'License :: OSI Approved :: MIT License',
  25. 'Programming Language :: Python :: 3',
  26. "Operating System :: POSIX :: Linux",
  27. "Environment :: Console",
  28. 'Intended Audience :: Developers',
  29. 'Intended Audience :: Information Technology',
  30. 'Intended Audience :: System Administrators',
  31. 'Topic :: System :: Installation/Setup',
  32. 'Topic :: System :: Systems Administration',
  33. 'Topic :: Utilities',
  34. ]
  35. license = {text = 'MIT'}
  36. [project.urls]
  37. pypi = 'https://pypi.org/project/setux-actions'
  38. repository = 'https://notabug.org/dugres/setux_actions'
  39. [tool.setuptools]
  40. include-package-data = false
  41. [tool.setuptools.dynamic]
  42. readme = {file = ['README.md'], content-type = 'text/markdown'}
  43. [tool.setuptools.packages.find]
  44. include = ['setux.*']