Skip to content

Commit 9c9af0b

Browse files
committed
chore: format pyproject.toml with dprint
1 parent c1d1f13 commit 9c9af0b

File tree

1 file changed

+42
-7
lines changed

1 file changed

+42
-7
lines changed

pyproject.toml

Lines changed: 42 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,24 @@ version = "0.13.0a10"
44
description = "Lite, typed, python library wrapper for git, svn, mercurial, etc."
55
license = "MIT"
66
authors = ["Tony Narlock <tony@git-pull.com>"]
7-
keywords = ["libvcs", "git", "mercurial", "hg", "svn", "subversion", "library", "lib", "wrapper", "vcs", "version control", "scm", "clone", "checkout", "abstraction", "version-control"]
7+
keywords = [
8+
"libvcs",
9+
"git",
10+
"mercurial",
11+
"hg",
12+
"svn",
13+
"subversion",
14+
"library",
15+
"lib",
16+
"wrapper",
17+
"vcs",
18+
"version control",
19+
"scm",
20+
"clone",
21+
"checkout",
22+
"abstraction",
23+
"version-control",
24+
]
825
classifiers = [
926
"Development Status :: 4 - Beta",
1027
"License :: OSI Approved :: MIT License",
@@ -23,15 +40,15 @@ classifiers = [
2340
"Topic :: Software Development :: Version Control :: Git",
2441
"Topic :: Software Development :: Version Control :: Mercurial",
2542
"Topic :: System :: Shells",
26-
"Typing :: Typed"
43+
"Typing :: Typed",
2744
]
2845
homepage = "http://github.com/vcs-python/libvcs/"
2946
readme = "README.md"
3047
packages = [
31-
{ include = "libvcs" }
48+
{ include = "libvcs" },
3249
]
3350
include = [
34-
{ path = "tests", format = "sdist" }
51+
{ path = "tests", format = "sdist" },
3552
]
3653

3754
[tool.poetry.urls]
@@ -42,7 +59,7 @@ Changes = "https://github.com/vcs-python/libvcs/blob/master/CHANGES"
4259

4360
[tool.poetry.dependencies]
4461
python = "^3.9"
45-
typing-extensions = {version="^4.1.1", python='3.10'}
62+
typing-extensions = { version = "^4.1.1", python = '3.10' }
4663

4764
[tool.poetry.dev-dependencies]
4865
### Docs ###
@@ -78,8 +95,26 @@ isort = "*"
7895
flake8 = "*"
7996

8097
[tool.poetry.extras]
81-
docs = ["sphinx", "sphinx-issues", "sphinx-autoapi", "sphinx-autodoc-typehints", "sphinx-autobuild", "sphinx-copybutton", "sphinxext-opengraph", "sphinx-inline-tabs", "sphinxext-rediraffe", "myst_parser", "furo"]
82-
test = ["faker", "pytest", "pytest-rerunfailures", "pytest-mock", "pytest-watcher"]
98+
docs = [
99+
"sphinx",
100+
"sphinx-issues",
101+
"sphinx-autoapi",
102+
"sphinx-autodoc-typehints",
103+
"sphinx-autobuild",
104+
"sphinx-copybutton",
105+
"sphinxext-opengraph",
106+
"sphinx-inline-tabs",
107+
"sphinxext-rediraffe",
108+
"myst_parser",
109+
"furo",
110+
]
111+
test = [
112+
"faker",
113+
"pytest",
114+
"pytest-rerunfailures",
115+
"pytest-mock",
116+
"pytest-watcher",
117+
]
83118
coverage = ["codecov", "coverage", "pytest-cov"]
84119
format = ["black", "isort"]
85120
lint = ["flake8"]

0 commit comments

Comments
 (0)