Skip to content

Commit

Permalink
add dependencies to array in pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
mbi6245 committed May 6, 2024
1 parent 8e76918 commit ee7d4b2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
name = "pypkg"
name = "distrx"
version = "0.1.0"
description = "Python package template"
readme = "README.md"
requires-python = ">=3.10"
requires-python = ">=3.11"
license = { text = "BSD-2-Clause" }
authors = [
{ name = "IHME Math Sciences", email = "ihme.math.sciences@gmail.com" },
Expand All @@ -20,7 +20,7 @@ classifiers = [
dependencies = []

[project.optional-dependencies]
test = ["pytest", "pytest-cov"]
test = ["pytest", "pytest-cov", "numpy", "typing", "warnings"]
docs = ["sphinx", "sphinx-autodoc-typehints", "furo"]

[project.urls]
Expand Down

0 comments on commit ee7d4b2

Please sign in to comment.