Skip to content
pyproject.toml 919 B
Newer Older
nimrod's avatar
nimrod committed
[build-system]
build-backend = "setuptools.build_meta"
requires = [
  "setuptools >= 61.0.0",
  "wheel",
]

[project]
authors = [
  { name = "Nimrod Adar", email = "nimrod@shore.co.il"},
]
classifiers = [
  "Environment :: Console",
  "Intended Audience :: Developers",
  "License :: OSI Approved :: MIT License",
  "Programming Language :: Python",
  "Topic :: Software Development :: Build Tools",
]
dependencies = [
]
description = "Sample Python project."
dynamic = [
  "version",
]
keywords = [
  "example",
  "sample",
  "packaging",
  "pep621",
  "python",
]
license = {file = "LICENSE.txt"}
name = "sampleproject"
readme = "README.rst"
nimrod's avatar
nimrod committed
requires-python = ">=3.7"
nimrod's avatar
nimrod committed

[project.scripts]
sampleproject = "sampleproject:main"

[project.optional-dependencies]
dev = [
]

[project.urls]
homepage = "https://git.shore.co.il/nimrod/samplepyproject"

[tool.setuptools.dynamic]
version = {attr = "sampleproject.__version__"}