-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove setup.cfg * Fixes * Update doc check * CI fix * Update
- Loading branch information
1 parent
4b6142a
commit f132188
Showing
4 changed files
with
56 additions
and
73 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,6 @@ | ||
[flake8] | ||
max-line-length = 120 | ||
builtins = ufl | ||
exclude = doc/sphinx/source/conf.py | ||
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
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,4 +1,52 @@ | ||
[build-system] | ||
requires = ["setuptools>=62", "wheel"] | ||
|
||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "fenics-ufl" | ||
version = "2023.3.0.dev0" | ||
authors = [{email="[email protected]"}, {name="FEniCS Project"}] | ||
maintainers = [{email="[email protected]"}, {name="FEniCS Project Steering Council"}] | ||
description = "Unified Form Language" | ||
readme = "README.rst" | ||
license = {file = "LICENSE"} | ||
requires-python = ">=3.8.0" | ||
dependencies = ["numpy"] | ||
|
||
[project.urls] | ||
homepage = "https://fenicsproject.org" | ||
repository = "https://github.com/fenics/ufl.git" | ||
documentation = "https://docs.fenicsproject.org" | ||
issues = "https://github.com/FEniCS/ufl/issues" | ||
funding = "https://numfocus.org/donate" | ||
|
||
[project.optional-dependencies] | ||
lint = ["flake8", "pydocstyle[toml]"] | ||
docs = ["sphinx", "sphinx_rtd_theme"] | ||
test = ["pytest"] | ||
ci = [ | ||
"coveralls", | ||
"coverage", | ||
"pytest-cov", | ||
"pytest-xdist", | ||
"fenics-ufl[docs]", | ||
"fenics-ufl[lint]", | ||
"fenics-ufl[test]", | ||
] | ||
|
||
[tool.setuptools] | ||
packages = [ | ||
"ufl", | ||
"ufl.algorithms", | ||
"ufl.core", | ||
"ufl.corealg", | ||
"ufl.formatting", | ||
"ufl.legacy", | ||
"ufl.utils", | ||
] | ||
|
||
[tool.pydocstyle] | ||
convention = "google" | ||
|
||
[itool.sort] | ||
line_length = 120 |