Skip to content

Commit

Permalink
Resolving pyproject.toml issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dmatekenya committed Nov 6, 2024
1 parent aa67633 commit e13b66f
Showing 1 changed file with 10 additions and 17 deletions.
27 changes: 10 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ requires = ["hatchling>=1.21.0", "hatch-vcs>=0.3.0"]
build-backend = "hatchling.build"

[project]
name = "LLM-Practical-Guide"
name = "template"
description = "A template Python package from the World Bank Data Lab"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
keywords = ["template", "reproducibility"]
authors = [{ name = "Dunstan Matekenya", email = "dmatekenya@worldbankgroup.org" }]
authors = [{ name = "Development Data Group", email = "datalab@worldbank.org" }]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
Expand All @@ -25,32 +25,25 @@ classifiers = [
dynamic = ["version"]

requires-python = ">=3.7"
dependencies = [
"bokeh>=3,<4",
"requests>=2.28.1",
"pandas>=2",
"pycountry>=22.3.5",
]
dependencies = ["requests>=2.28.1", "pandas>=2", "pycountry>=22.3.5"]
[project.optional-dependencies]
docs = [
"docutils==0.17.1", # pinned to docutils==0.17.1 due to https://github.com/worldbank/template/issues/60. See also: https://jupyterbook.org/en/stable/content/citations.html?highlight=docutils#citations-and-bibliographies
"jupyter-book>=1,<2",
]

[project.urls]
"Homepage" = "https://github.com/worldbank/LLMs-Practical-Guide/"
"Bug Reports" = "https://github.com/worldbank/LLMs-Practical-Guide/issues"
"Source" = "https://github.com/worldbank/LLMs-Practical-Guide/"
"Homepage" = "https://github.com/worldbank/template"
"Bug Reports" = "https://github.com/worldbank/template/issues"
"Source" = "https://github.com/worldbank/template"

[tool.codespell]
skip = 'docs/_build,docs/bibliography.bib,*.png,*.gz,*.whl'
skip = 'docs/_build,docs/references.bib,*.png,*.gz,*.whl'
ignore-regex = '^\s*"image\/png":\s.*'
ignore-words-list = "gost,Nd"
ignore-words-list = "gost,"

[tool.hatch.build.targets.sdist]
include = [
"src/**/*"
]
[tool.hatch.build.targets.wheel]
packages = ["src/*"]

[tool.hatch.version]
source = "vcs"
Expand Down

0 comments on commit e13b66f

Please sign in to comment.