Commit 2b358f8e authored by nimrod's avatar nimrod
Browse files

Skeleton pyproject.toml.

parent 15d6336d
Loading
Loading
Loading
Loading
+39 −0
Original line number Diff line number Diff line
[build-system]
build-backend = "setuptools.build_meta"
requires = [
  "setuptools >= 61.0.0",
  "wheel",
]

[project]
authors = [
  { name = "Nimrod Adar", email = "nimrod@shore.co.il"},
]
classifiers = [
  "License :: OSI Approved :: MIT License",
  "Programming Language :: Python",
]
dependencies = [
]
description = ""
dynamic = [
  "version",
]
keywords = [
]
license = {file = "LICENSE.txt"}
name = ""
readme = "README.rst"

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

[project.optional-dependencies]
dev = [
]

[project.urls]
homepage = ""

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