Skip to content

Commit

Permalink
format pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Spitfire1900 committed Mar 23, 2024
1 parent b79a88c commit f75ad3c
Showing 1 changed file with 6 additions and 14 deletions.
20 changes: 6 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
[project]
name = "xontrib-pygitstatus"
version = "0.0.1"
license = {file = "LICENSE"}
license = { file = "LICENSE" }
description = "PyGit implementation of gitstatus PROMPT"
classifiers = [
"Programming Language :: Python :: 3",
Expand All @@ -14,20 +14,16 @@ classifiers = [
]
requires-python = ">=3.8"
dependencies = ["xonsh>=0.12.5", "pygit2>=1.11.1"]
authors = [
{ name = "Kyle Gottfried", email = "Kyle.Gottfried@outlook.com" },
]
authors = [{ name = "Kyle Gottfried", email = "Kyle.Gottfried@outlook.com" }]
[project.readme]
file = "README.md"
content-type = "text/markdown"



[project.entry-points."xonsh.xontribs"]
"pygitstatus" = "xontrib_pygitstatus.main"



[project.urls]

Homepage = "https://github.com//xontrib-pygitstatus"
Expand All @@ -36,17 +32,14 @@ Code = "https://github.com//xontrib-pygitstatus"
"Issue tracker" = "https://github.com//xontrib-pygitstatus/issues"




[project.optional-dependencies]
dev = ["pytest>=7.0"]



[build-system]
requires = [
"setuptools>=62",
"wheel", # for bdist package distribution
"wheel", # for bdist package distribution
]
build-backend = "setuptools.build_meta"
[tool.setuptools]
Expand All @@ -56,7 +49,6 @@ include-package-data = false
[tool.setuptools.package-data]



[tool.black]
include = '\.pyi?$'
force-exclude = '''
Expand All @@ -80,9 +72,9 @@ force-exclude = '''
select = [
"E",
"F",
"B", # flake8-bugbear
"I", # isort
"UP", # pyupgrade
"B", # flake8-bugbear
"I", # isort
"UP", # pyupgrade
"SIM", # simplify
"TCH", # flake8-type-checking
"RUF", # ruff specific rules
Expand Down

0 comments on commit f75ad3c

Please sign in to comment.