-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
46 lines (42 loc) · 1.04 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=40.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "numpoly"
version = "1.2.14"
description = "Polynomials as a numpy datatype"
license = {text = "BSD-2-Clause"}
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Mathematics",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
]
requires-python = ">=3.7"
dependencies = [
"numpy >=1.20",
"setuptools >=40.9.0",
"importlib-metadata",
]
[project.optional-dependencies]
dev = [
"black ==23.3.0",
"pylint ==2.15.5",
"pydocstyle ==3.0.0",
"pydata_sphinx_theme ==0.15.2",
"sympy",
"pytest",
"pytest-cov",
"codecov",
"coverage >=5.0",
"Sphinx",
"sphinx_automodapi",
]
[tool.pytest.ini_options]
filterwarnings = [
"error::DeprecationWarning",
"ignore:elementwise:DeprecationWarning",
"ignore:Calling nonzero on 0d arrays:DeprecationWarning"
]