-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
119 lines (111 loc) · 2.69 KB
/
setup.cfg
File metadata and controls
119 lines (111 loc) · 2.69 KB
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[metadata]
name = minterpy
description = Python library for multivariate polynomial interpolation.
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/minterpy-project/minterpy
author = file: AUTHORS.md
author_email = u.hernandez@hzdr.de
maintainer = Minterpy development team
maintainer_email = u.hernandez@hzdr.de
license = MIT
license_file = LICENSE
platforms =
Any
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
Intended Audience :: Science/Research
Intended Audience :: Education
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Scientific/Engineering
project_urls =
Bug Tracker = https://github.com/minterpy-project/minterpy/issues
[options]
packages = find:
install_requires =
attrs>=20.3.0
numba>=0.53.1
numpy>=1.13.3
scipy>=1.6.3
python_requires = >=3.8
include_package_data = True
package_dir =
=src
[options.packages.find]
where = src
[options.extras_require]
dev =
black>=24.8.0
pre-commit>=3.5.0
pytest>=4.6
pytest-cov>=2.12.0
docs =
Setuptools<81
Sphinx<=8.2.3
matplotlib>=3.4.2
numba>=0.53.1
numpy>=1.13.3
pytest>=4.6
pytest-cov>=2.12.0
scipy>=1.6.3
myst-nb>=0.17.2
nbmake>=1.5.4
ipykernel>=6.9.1
ipython-genutils>=0.2.0
jupyterlab>=4.0.6
sphinx-copybutton>=0.5.0
sphinxcontrib.bibtex>=2.4.1
sphinx-autobuild>=2021.3.14
pydata-sphinx-theme>=0.7.2
sphinx-design>=0.5.0
all =
minterpy[dev]
minterpy[docs]
[tool:pytest]
addopts = -ra -Wd
--cov-config=.coveragerc
--cov minterpy
--cov-report term-missing
--cov-report html
testpaths =
tests
[check-manifest]
ignore =
.github/**
docs/**
.pre-commit-config.yaml
.readthedocs.yml
src/*/version.py
[flake8]
ignore = E203, E231, E501, E722, W503, B950
select = C,E,F,W,T,B,B9,I
per-file-ignores =
tests/*: T
[mypy]
files = src
python_version = 3.8
plugins = numpy.typing.mypy_plugin
warn_unused_configs = True
disallow_any_generics = True
disallow_subclassing_any = True
disallow_untyped_calls = True
disallow_untyped_defs = True
disallow_incomplete_defs = True
check_untyped_defs = True
disallow_untyped_decorators = True
no_implicit_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
warn_return_any = True
no_implicit_reexport = True
strict_equality = True
[mypy-numpy]
ignore_missing_imports = True