diff options
author | Arun Isaac | 2021-03-31 15:29:05 +0530 |
---|---|---|
committer | Arun Isaac | 2021-03-31 15:29:05 +0530 |
commit | 14bf6c355889c38d1683d6bf8edcfb80a11c3481 (patch) | |
tree | 44eeed49cfeda45eebcdd67016951f399009a7b9 | |
parent | ed7cd13677ba53f224d46166ceaf579157fbdde1 (diff) | |
download | sambal-main.tar.gz sambal-main.tar.lz sambal-main.zip |
* pyproject.toml (project): Specify numpy as a dependency.
(project.optional-dependencies): Specify pytest as an optional
dependency.
-rw-r--r-- | pyproject.toml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml index aea73e8..8c58b95 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,3 +1,13 @@ +[project] +dependencies = [ + "numpy" +] + +[project.optional-dependencies] +tests = [ + "pytest" +] + [build-system] requires = [ "setuptools>=42", |