Skip to content

Commit c03d72e

Browse files
committed
Adding files to support pypi dist creation and uploading
1 parent 063005e commit c03d72e

File tree

2 files changed

+32
-2
lines changed

2 files changed

+32
-2
lines changed

pyproject.toml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
[project]
2+
name = "pyttb"
3+
version = "1.3.3"
4+
description = "Python Tensor Toolbox"
5+
authors = [
6+
{name="Daniel M. Dunlavy", email="[email protected]"},
7+
]
8+
license = { text="BSD 2-Clause License" }
9+
readme = "README.md"
10+
requires-python = ">=3.8"
11+
12+
dependencies = [
13+
"numpy",
14+
"numpy_groupies",
15+
]
16+
17+
classifiers = [
18+
"License :: OSI Approved :: BSD License",
19+
"Operating System :: OS Independent",
20+
"Programming Language :: Python :: 3",
21+
]
22+
23+
[project.urls]
24+
homepage = "https://github.com/sandialabs/pyttb"
25+
coverage = "https://coveralls.io/github/sandialabs/pyttb"
26+
documentation = "https://pyttb.readthedocs.io"
27+
28+
[build-system]
29+
requires = ["setuptools>=61.0", "numpy", "numpy_groupies", "wheel"]
30+
build-backend = "setuptools.build_meta"
31+

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,10 @@
33
# U.S. Government retains certain rights in this software.
44

55
from setuptools import setup
6-
from pyttb import __version__
76

87
setup(
98
name='pyttb',
10-
version=__version__,
9+
version='1.3.3',
1110
packages=['pyttb'],
1211
package_dir={'': '.'},
1312
url='',

0 commit comments

Comments
 (0)