Skip to content

Commit

Permalink
fix(black)!: constrain line length to 79 characters
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielbdsantos committed Feb 14, 2024
1 parent 802d982 commit 97ca432
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,11 @@ A simple script for creating a consistent airfoil database.
git clone https://github.com/gabrielbdsantos/airfoildb
cd airfoildb

2. Sync the requirements and install it.
2. (Optional) Pin a python version

rye pin 3.x

3. Sync the requirements and install it.

rye sync

Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[project]
name = "airfoildb"
version = "0.1.0"
description = "Add your description here"
description = "Consistent B-spline representation for the UIUC airfoil database."
authors = [
{ name = "Gabriel B. Santos", email = "9348147+gabrielbdsantos@users.noreply.github.com" }
{ name = "Gabriel B. Santos", email = "gabriel.bertacco@unesp.br" }
]
dependencies = [
"beautifulsoup4==4.11.1 ; python_version >= '3.8' and python_version < '3.11'",
Expand All @@ -19,6 +19,7 @@ dependencies = [
"typer==0.7.0 ; python_version >= '3.8' and python_version < '3.11'",
"urllib3==1.26.13 ; python_version >= '3.8' and python_version < '3.11'",
]
license = "MIT"
readme = "README.md"
requires-python = ">= 3.8"

Expand All @@ -38,3 +39,6 @@ allow-direct-references = true

[tool.hatch.build.targets.wheel]
packages = ["src/airfoildb"]

[tool.black]
line-length = 79

0 comments on commit 97ca432

Please sign in to comment.