pyproject.toml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. [build-system]
  2. requires = ["setuptools>=61.0", "wheel"]
  3. build-backend = "setuptools.build_meta"
  4. [project]
  5. name = "autusm"
  6. version = "0.1.0"
  7. description = "Automatic USM (Universal Source Manifest) generator for source packages"
  8. authors = [{name = "Autusm Team", email = "team@autusm.org"}]
  9. license = {text = "MIT"}
  10. readme = "README.md"
  11. requires-python = ">=3.8"
  12. classifiers = [
  13. "Development Status :: 3 - Alpha",
  14. "Intended Audience :: Developers",
  15. "License :: OSI Approved :: MIT License",
  16. "Programming Language :: Python :: 3",
  17. "Programming Language :: Python :: 3.8",
  18. "Programming Language :: Python :: 3.9",
  19. "Programming Language :: Python :: 3.10",
  20. "Programming Language :: Python :: 3.11",
  21. "Programming Language :: Python :: 3.12",
  22. ]
  23. dependencies = [
  24. "requests>=2.25.0",
  25. "click>=8.0.0",
  26. "pyyaml>=6.0",
  27. "toml>=0.10.2",
  28. "packaging>=21.0",
  29. ]
  30. [project.optional-dependencies]
  31. dev = [
  32. "pytest>=6.0",
  33. "pytest-cov>=2.0",
  34. "black>=21.0",
  35. "flake8>=3.9",
  36. "mypy>=0.910",
  37. ]
  38. [project.scripts]
  39. autusm = "autusm.cli:main"
  40. [project.urls]
  41. Homepage = "https://github.com/autusm/autusm"
  42. Repository = "https://github.com/autusm/autusm"
  43. Issues = "https://github.com/autusm/autusm/issues"
  44. [tool.setuptools.packages.find]
  45. where = ["src"]
  46. [tool.setuptools.package-dir]
  47. "" = "src"