-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
31 lines (26 loc) · 920 Bytes
/
pyproject.toml
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
[tool.poetry]
name = "einsum"
version = "0.3.0"
homepage = "https://github.com/sorenlassen/einsum-experiment"
description = "Experimental implementation of torch/onnx einsum"
authors = ["Soren Lassen <[email protected]>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
[tool.poetry.group.dev.dependencies]
pytest = "^7.1.1"
pytest-cov = "^3.0.0"
python-semantic-release = "^7.28.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_toml = "pyproject.toml:tool.poetry.version"
branch = "main"
include_additional_files = "setup.py"
major_on_zero = false
build_command = "poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists