forked from FEniCS/ufl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
74 lines (70 loc) · 2.18 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
# Setuptools does not yet support modern pyproject.toml but will do so in the
# future
[metadata]
name = fenics-ufl
version = 2021.2.0.dev0
author = FEniCS Project Contributors
email = [email protected]
maintainer = FEniCS Project Steering Council
description = Unified Form Language
url = https://github.com/FEniCS/ufl
project_urls =
Homepage = https://fenicsproject.org
Documentation = https://fenics.readthedocs.io/projects/ufl
Issues = https://github.com/FEniCS/ufl/issues
Funding = https://numfocus.org/donate
long_description = file: README.rst
long_description_content_type = text/rst
license=LGPL-3.0-or-later
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
Intended Audience :: Science/Research
License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Operating System :: POSIX
Operating System :: POSIX :: Linux
Operating System :: MacOS :: MacOS X
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering :: Mathematics
Topic :: Software Development :: Libraries :: Python Modules
[options]
packages = find:
include_package_data = True
zip_safe = False
python_requires = >= 3.7
setup_requires =
setuptools >= 58
wheel
install_requires =
numpy
[options.extras_require]
docs = sphinx; sphinx_rtd_theme
lint = flake8; pydocstyle[toml]
test = pytest
ci =
coverage
coveralls
pytest-cov
pytest-xdist
fenics-ufl[docs]
fenics-ufl[lint]
fenics-ufl[test]
[flake8]
ignore = E501, W504,
E741 # ambiguous variable name
builtins = ufl
exclude = .git,__pycache__,doc/sphinx/source/conf.py,build,dist,test
[pydocstyle]
# Work on removing these ignores
ignore = D100,D101,D102,D103,D104,D105,D107,
D200,D202,
D203, # this error should be disabled
D204,D205,D208,D209,D210,D212,D213,
D300,D301,
D400,D401,D402,D404,D415,D416
E741 # Variable names l, O, I, ...