Skip to content

Commit

Permalink
don't use coverage by default
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasahle committed Jan 13, 2025
1 parent 0607f65 commit 303ace2
Showing 1 changed file with 27 additions and 8 deletions.
35 changes: 27 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"

[project]
name = "tensorgrad"
version = "0.1"
Expand All @@ -17,6 +10,32 @@ dependencies = [
"pdf2image",
"sympy"
]
requires-python = ">=3.11"
authors = [
{name = "Thomas Ahle", email = "lobais@gmail.com"},
]
description = "Tensor Network Library with Symbolic Autograd"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["tensors", "autograd"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python"
]


[project.urls]
Homepage = "https://tensorcookbook.com"
Repository = "https://github.com/thomasahle/tensorgrad.git"
Issues = "https://github.com/thomasahle/tensorgrad/issues"

[build-system]
requires = [
"setuptools",
"wheel"
]
build-backend = "setuptools.build_meta"


[tool.setuptools]
packages = ["tensorgrad"]
Expand All @@ -26,6 +45,6 @@ line-length = 110
indent-width = 4

[tool.pytest.ini_options]
addopts = "-s --cov=tensorgrad --cov-report=term-missing --cov-report=xml"
addopts = "-s"
# addopts = "--nbval"

0 comments on commit 303ace2

Please # to comment.