forked from jonathf/numpoly
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 856 Bytes
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 856 Bytes
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
[build-system]
requires = ["setuptools>=40.9.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "numpoly"
version = "1.2.5"
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",
]
[project.optional-dependencies]
dev = [
"black ==22.10.0",
"pylint ==2.15.5",
"pydocstyle ==3.0.0",
"pydata_sphinx_theme ==0.11.0",
"sympy",
"pytest",
"pytest-cov",
"codecov",
"coverage >=5.0",
"Sphinx",
"sphinx_automodapi",
]