Skip to content

Commit

Permalink
Merge pull request #17 from chhsiao1981/single-quote-in-pyproject.toml
Browse files Browse the repository at this point in the history
single-quote in pyproject.toml
  • Loading branch information
chhsiao1981 authored May 27, 2024
2 parents 191217f + 48614f7 commit cec1db5
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions project/{{cookiecutter.project}}/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[build-system]
requires = [
"setuptools",
'setuptools',
]
build-backend = "setuptools.build_meta"
build-backend = 'setuptools.build_meta'

[project]
name = "{{cookiecutter.project_name_with_dash}}"
version = "0.0.1"
name = '{{cookiecutter.project_name_with_dash}}'
version = '0.0.1'
dependencies = [
]
authors = [
# {name = "", email = ""},
# {name = '', email = ''},
]
description = ""
readme = "README.md"
license = {file = "LICENSE.txt"}
description = ''
readme = 'README.md'
license = {file = 'LICENSE.txt'}
keywords = [
]
classifiers = [
Expand All @@ -23,15 +23,15 @@ classifiers = [
]

[project.urls]
# Homepage = ""
# Documentation = ""
# Repository = ""
# "Bug Tracker" = ""
# Changelog = ""
# Homepage = ''
# Documentation = ''
# Repository = ''
# 'Bug Tracker' = ''
# Changelog = ''

[project.scripts]

[tool.setuptools.packages.find]
exclude = [
"tests*",
'tests*',
]

0 comments on commit cec1db5

Please sign in to comment.