mirror of https://github.com/eyhc1/rendercv.git
update pyproject.toml
This commit is contained in:
parent
065af5a680
commit
384a6a29e9
|
@ -16,7 +16,7 @@
|
||||||
# To build RenderCV, we need to specify which build package we want to use. There are
|
# To build RenderCV, we need to specify which build package we want to use. There are
|
||||||
# many build packages like `setuptools`, `flit`, `poetry`, `hatchling`, etc. We will use
|
# many build packages like `setuptools`, `flit`, `poetry`, `hatchling`, etc. We will use
|
||||||
# `hatchling`.
|
# `hatchling`.
|
||||||
requires = ["hatchling"] # Our dependency to build RenderCV
|
requires = ["hatchling==1.21.1"] # Our dependency to build RenderCV
|
||||||
|
|
||||||
# Python has a standard object format called build-backend object. Python standard asks
|
# Python has a standard object format called build-backend object. Python standard asks
|
||||||
# this object to have some specific methods that do a specific job. For example, it
|
# this object to have some specific methods that do a specific job. For example, it
|
||||||
|
@ -39,7 +39,6 @@ include = ["/README.md", "/rendercv"]
|
||||||
# We use tinytex-release as a git submodule, so it's a seperate repository. We don't
|
# We use tinytex-release as a git submodule, so it's a seperate repository. We don't
|
||||||
# want to ship all the files from that repository with RenderCV.
|
# want to ship all the files from that repository with RenderCV.
|
||||||
exclude = [
|
exclude = [
|
||||||
"/rendercv/tinytex-release/recycle_bin",
|
|
||||||
"/rendercv/tinytex-release/minimize_tinytex_for_rendercv.py",
|
"/rendercv/tinytex-release/minimize_tinytex_for_rendercv.py",
|
||||||
"/rendercv/tinytex-release/.gitignore",
|
"/rendercv/tinytex-release/.gitignore",
|
||||||
]
|
]
|
||||||
|
@ -88,6 +87,7 @@ Source = 'https://github.com/sinaatalay/rendercv'
|
||||||
[project.scripts]
|
[project.scripts]
|
||||||
# Here, we specify the entry points of RenderCV.
|
# Here, we specify the entry points of RenderCV.
|
||||||
# See https://packaging.python.org/en/latest/specifications/entry-points/#entry-points
|
# See https://packaging.python.org/en/latest/specifications/entry-points/#entry-points
|
||||||
|
# See https://hatch.pypa.io/latest/config/metadata/#cli
|
||||||
|
|
||||||
# The key and value below mean this: If someone installs RenderCV, then running
|
# The key and value below mean this: If someone installs RenderCV, then running
|
||||||
# `rendercv` in the terminal will run the function `app` in the module `__main__` in the
|
# `rendercv` in the terminal will run the function `app` in the module `__main__` in the
|
||||||
|
|
Loading…
Reference in New Issue