-
-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove top level setup.cfg * Remove setup.py * Fix RPATH * Fix typo * Remove comment
- Loading branch information
1 parent
eebbc52
commit d1610a2
Showing
7 changed files
with
63 additions
and
128 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
ignore = W503, E226, E241 | ||
per-file-ignores = | ||
*/__init__.py: F401 |
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,5 +1,6 @@ | ||
cmake_minimum_required(VERSION 3.19) | ||
|
||
project(BasixFull VERSION "0.8.0.0" LANGUAGES CXX) | ||
set(BASIX_FULL_SKBUILD TRUE) | ||
add_subdirectory(cpp) | ||
add_subdirectory(python) |
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 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,5 +1,24 @@ | ||
[build-system] | ||
# We require that the user installs cmake | ||
requires = ["setuptools>=42", "wheel", "nanobind>=1.5.1", "cmake>=3.19"] | ||
requires = ["scikit-build-core", "nanobind>=1.5.1", "cmake>=3.19"] | ||
build-backend = "scikit_build_core.build" | ||
|
||
build-backend = "setuptools.build_meta" | ||
[project] | ||
name = "fenics-basix" | ||
version = "0.8.0.dev0" | ||
description = "Basix Python interface" | ||
readme = "../README.md" | ||
requires-python = ">=3.8.0" | ||
license = {file = "../LICENSE"} | ||
authors = [{email="fenics-dev@googlegroups.com"}, {name="FEniCS Project"}] | ||
packages = ["basix"] | ||
dependencies = ["numpy>=1.21"] | ||
|
||
[project.optional-dependencies] | ||
docs = ["markdown", "pylit3", "pyyaml", "sphinx==5.0.2", "sphinx_rtd_theme"] | ||
lint = ["flake8", "pydocstyle", "isort"] | ||
optional = ["numba", "fenics-ufl@git+https://github.com/fenics/ufl"] | ||
test = ["pytest", "sympy", "scipy", "matplotlib", "fenics-basix[optional]"] | ||
ci = ["mypy", "pytest-xdist", "fenics-basix[docs,lint,test,optional]"] | ||
|
||
[tool.scikit-build] | ||
wheel.packages = ["basix"] |
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,14 +0,0 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
ignore = W503, E226, E241 | ||
per-file-ignores = | ||
*/__init__.py: F401 | ||
|
||
[pydocstyle] | ||
convention = google | ||
|
||
[mypy] | ||
ignore_missing_imports = True | ||
|
||
[isort] | ||
line_length = 120 | ||