pyproject.toml 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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_plus'
  8. version = '0.2501.0'
  9. dynamic = ['readme']
  10. description = 'System deployment'
  11. authors = [
  12. {name = 'Louis RIVIERE', email = 'louis@riviere.xyz'},
  13. ]
  14. maintainers = [
  15. {name = 'Louis RIVIERE', email = 'louis@riviere.xyz'},
  16. ]
  17. dependencies = [
  18. 'setux>=0.2422.0',
  19. ]
  20. keywords = [
  21. 'utility',
  22. ]
  23. classifiers = [
  24. 'Development Status :: 3 - Alpha',
  25. 'License :: OSI Approved :: MIT License',
  26. 'Programming Language :: Python :: 3',
  27. "Operating System :: POSIX :: Linux",
  28. "Environment :: Console",
  29. 'Intended Audience :: Developers',
  30. 'Intended Audience :: Information Technology',
  31. 'Intended Audience :: System Administrators',
  32. 'Topic :: System :: Installation/Setup',
  33. 'Topic :: System :: Systems Administration',
  34. 'Topic :: Utilities',
  35. ]
  36. license = {text = 'MIT'}
  37. [project.urls]
  38. Homepage = 'https://pypi.org/project/setux-plus'
  39. pypi = 'https://pypi.org/project/setux-plus'
  40. repository = 'https://notabug.org/dugres/setux_plus'
  41. Documentation = 'https://setux-plus.readthedocs.io'
  42. [tool.setuptools.dynamic]
  43. readme = {file = ['README.md'], content-type = 'text/markdown'}
  44. [tool.setuptools.packages.find]
  45. include = ['setux.*']
  46. [tool.setuptools]
  47. include-package-data = false