-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore!: change dependence manager
poetry
-> rye
- Loading branch information
1 parent
e5017bd
commit 802d982
Showing
11 changed files
with
69 additions
and
273 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 was deleted.
Oops, something went wrong.
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,27 +1,40 @@ | ||
[tool.poetry] | ||
[project] | ||
name = "airfoildb" | ||
version = "0.1.0" | ||
description = "Consistent B-spline representation for the UIUC airfoil database." | ||
authors = ["Gabriel B. Santos <[email protected]>"] | ||
license = "MIT" | ||
packages = [ | ||
{ include = "airfoildb" }, | ||
description = "Add your description here" | ||
authors = [ | ||
{ name = "Gabriel B. Santos", email = "[email protected]" } | ||
] | ||
dependencies = [ | ||
"beautifulsoup4==4.11.1 ; python_version >= '3.8' and python_version < '3.11'", | ||
"certifi==2022.12.7 ; python_version >= '3.8' and python_version < '3.11'", | ||
"charset-normalizer==2.1.1 ; python_version >= '3.8' and python_version < '3.11'", | ||
"click==8.1.3 ; python_version >= '3.8' and python_version < '3.11'", | ||
"colorama==0.4.6 ; python_version >= '3.8' and python_version < '3.11' and platform_system == 'Windows'", | ||
"idna==3.4 ; python_version >= '3.8' and python_version < '3.11'", | ||
"numpy==1.24.0 ; python_version >= '3.8' and python_version < '3.11'", | ||
"requests==2.28.1 ; python_version >= '3.8' and python_version < '3.11'", | ||
"scipy==1.9.3 ; python_version >= '3.8' and python_version < '3.11'", | ||
"soupsieve==2.3.2.post1 ; python_version >= '3.8' and python_version < '3.11'", | ||
"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'", | ||
] | ||
readme = "README.md" | ||
requires-python = ">= 3.8" | ||
|
||
[tool.poetry.scripts] | ||
[project.scripts] | ||
airfoildb = 'airfoildb.cli:app' | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.8,<3.11" | ||
beautifulsoup4 = "^4.11" | ||
requests = "^2.26" | ||
scipy = "^1.7" | ||
numpy = "^1.21" | ||
typer = "^0.7.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[tool.rye] | ||
managed = true | ||
dev-dependencies = [] | ||
|
||
[tool.hatch.metadata] | ||
allow-direct-references = true | ||
|
||
[tool.black] | ||
line-length = 79 | ||
[tool.hatch.build.targets.wheel] | ||
packages = ["src/airfoildb"] |
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,12 +1,39 @@ | ||
# generated by rye | ||
# use `rye lock` or `rye sync` to update this lockfile | ||
# | ||
# last locked with the following flags: | ||
# pre: false | ||
# features: [] | ||
# all-features: false | ||
# with-sources: false | ||
|
||
-e file:. | ||
beautifulsoup4==4.11.1 ; python_version >= "3.8" and python_version < "3.11" | ||
# via airfoildb | ||
certifi==2022.12.7 ; python_version >= "3.8" and python_version < "3.11" | ||
# via airfoildb | ||
# via requests | ||
charset-normalizer==2.1.1 ; python_version >= "3.8" and python_version < "3.11" | ||
# via airfoildb | ||
# via requests | ||
click==8.1.3 ; python_version >= "3.8" and python_version < "3.11" | ||
colorama==0.4.6 ; python_version >= "3.8" and python_version < "3.11" and platform_system == "Windows" | ||
# via airfoildb | ||
# via typer | ||
idna==3.4 ; python_version >= "3.8" and python_version < "3.11" | ||
# via airfoildb | ||
# via requests | ||
numpy==1.24.0 ; python_version >= "3.8" and python_version < "3.11" | ||
# via airfoildb | ||
# via scipy | ||
requests==2.28.1 ; python_version >= "3.8" and python_version < "3.11" | ||
# via airfoildb | ||
scipy==1.9.3 ; python_version >= "3.8" and python_version < "3.11" | ||
# via airfoildb | ||
soupsieve==2.3.2.post1 ; python_version >= "3.8" and python_version < "3.11" | ||
# via airfoildb | ||
# via beautifulsoup4 | ||
typer==0.7.0 ; python_version >= "3.8" and python_version < "3.11" | ||
# via airfoildb | ||
urllib3==1.26.13 ; python_version >= "3.8" and python_version < "3.11" | ||
# via airfoildb | ||
# via requests |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.