-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed documentation to work with project.toml instead of setup.py
- Loading branch information
1 parent
888c874
commit 0c421da
Showing
3 changed files
with
35 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,26 @@ | ||
[build-system] | ||
requires = [ | ||
"setuptools", | ||
"setuptools-scm", | ||
] | ||
requires = ["setuptools", "setuptools-scm"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "fillname" | ||
authors = [ | ||
{ name = "Author Fillname", email = "[email protected]" } | ||
] | ||
authors = [{ name = "Author Fillname", email = "[email protected]" }] | ||
description = "A template project." | ||
requires-python = ">=3.9" | ||
license = {file = "LICENSE"} | ||
dynamic = [ "version" ] | ||
license = { file = "LICENSE" } | ||
dynamic = ["version"] | ||
readme = "README.md" | ||
|
||
[project.urls] | ||
Homepage = "https://fillname.org/" | ||
|
||
[project.optional-dependencies] | ||
format = [ "black", "isort", "autoflake" ] | ||
lint_pylint = [ "pylint" ] | ||
typecheck = [ "types-setuptools", "mypy" ] | ||
test = [ "coverage[toml]" ] | ||
doc = [ "sphinx", "furo", "nbsphinx", "sphinx_copybutton", "myst-parser" ] | ||
dev = [ "fillname[test,typecheck,lint_pylint]" ] | ||
format = ["black", "isort", "autoflake"] | ||
lint_pylint = ["pylint"] | ||
typecheck = ["types-setuptools", "mypy"] | ||
test = ["coverage[toml]"] | ||
doc = ["sphinx", "furo", "nbsphinx", "sphinx_copybutton", "myst-parser", "importlib_metadata", "toml"] | ||
dev = ["fillname[test,typecheck,lint_pylint]"] | ||
|
||
[project.scripts] | ||
fillname = "fillname.__main__:main" | ||
|