Skip to content

Commit

Permalink
adjust for uv
Browse files Browse the repository at this point in the history
  • Loading branch information
HelgeGehring committed Oct 3, 2024
1 parent 40f0422 commit 79fef8c
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 27 deletions.
5 changes: 0 additions & 5 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ repos:
hooks:
- id: black

- repo: https://github.com/python-poetry/poetry
rev: 1.8.0
hooks:
- id: poetry-check

- repo: "https://github.com/domluna/JuliaFormatter.jl"
rev: "v1.0.54"
hooks:
Expand Down
46 changes: 24 additions & 22 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = ['setuptools>=73.0.0']
build-backend = 'setuptools.build_meta'

[tool.poetry]
[project]
name = "femwell"
version = "0.0.1"
authors = ["Helge Gehring"]
Expand All @@ -23,30 +23,32 @@ classifiers = [
license = "GPLv3"
readme = "README.md"

[tool.poetry.urls]
Documentation = "https://HelgeGehring.github.io/femwell/"
dependencies = [
"python >=3.8",
"scikit-fem >=8.1.0",
"gmsh = 4.13.1",
"pygmsh",
"matplotlib",
"meshwell>=1.0.2"
]

[tool.poetry.dependencies]
python = ">=3.8"
scikit-fem = ">=8.1.0"
gmsh = "4.13.1"
pygmsh = "*"
matplotlib = "*"
meshwell = ">=1.0.2"
[project.optional-dependencies]
test = [
"pytest",
"flake8"
]

[tool.poetry.group.test.dependencies]
pytest = "*"
flake8 = "*"
[project.urls]
Documentation = "https://HelgeGehring.github.io/femwell/"

[tool.poetry.group.docs.dependencies]
python = ">=3.10"
tqdm = "*"
enlighten = "*"
pint = ">0.20.1"
# sphinx-book-theme = "*"
jupytext = "*"
# myst-parser = "*"
pandas = "*"
docs = [
"tqdm",
"enlighten",
"pint>0.20.1",
"sphinx-book-theme",
"jupytext",
"pandas"
]

[tool.black]
line-length = 100

0 comments on commit 79fef8c

Please sign in to comment.