| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- [build-system]
- requires = ["setuptools>=61.0", "wheel"]
- build-backend = "setuptools.build_meta"
- [project]
- name = "autusm"
- version = "0.1.0"
- description = "Automatic USM (Universal Source Manifest) generator for source packages"
- authors = [{name = "Autusm Team", email = "team@autusm.org"}]
- license = {text = "MIT"}
- readme = "README.md"
- requires-python = ">=3.8"
- classifiers = [
- "Development Status :: 3 - Alpha",
- "Intended Audience :: Developers",
- "License :: OSI Approved :: MIT License",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: 3.10",
- "Programming Language :: Python :: 3.11",
- "Programming Language :: Python :: 3.12",
- ]
- dependencies = [
- "requests>=2.25.0",
- "click>=8.0.0",
- "pyyaml>=6.0",
- "toml>=0.10.2",
- "packaging>=21.0",
- ]
- [project.optional-dependencies]
- dev = [
- "pytest>=6.0",
- "pytest-cov>=2.0",
- "black>=21.0",
- "flake8>=3.9",
- "mypy>=0.910",
- ]
- [project.scripts]
- autusm = "autusm.cli:main"
- [project.urls]
- Homepage = "https://github.com/autusm/autusm"
- Repository = "https://github.com/autusm/autusm"
- Issues = "https://github.com/autusm/autusm/issues"
- [tool.setuptools.packages.find]
- where = ["src"]
- [tool.setuptools.package-dir]
- "" = "src"
|