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
37 lines (34 loc) · 891 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 891 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
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.poetry]
name = "numpoly"
version = "1.1.1"
description = "Polynomials as a numpy datatype"
license = "BSD-2-Clause"
authors = ["Jonathan Feinberg"]
repository = "https://github.com/jonathf/numpoly"
documentation = "https://numpoly.readthedocs.io"
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",
]
[tool.poetry.dependencies]
python = "*"
numpy = "^1.16"
six = "*"
[tool.poetry.dev-dependencies]
sympy = "*"
pylint = "*"
pytest = "*"
pytest-cov = "*"
codecov = "*"
coverage = "*"
Sphinx = "*"
pydocstyle = "3.0.0"
sphinx_automodapi = "*"
pydata_sphinx_theme = "*"