Skip to content

Commit 4aa55a6

Browse files
committed
Create package with basic utilities
1 parent 96b1e0d commit 4aa55a6

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

pyproject.toml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[project]
2+
name = "pytensor-workshop"
3+
version = "0.0.1"
4+
authors = [
5+
{ name="PyMC developers" },
6+
]
7+
description = "Source code for pytensor workshop utilities"
8+
9+
dependencies = [
10+
"pytensor >=2.26.4,<3",
11+
]
12+
13+
classifiers = [
14+
"Programming Language :: Python :: 3",
15+
"License :: OSI Approved :: MIT License",
16+
"Operating System :: OS Independent",
17+
]
18+
19+
[project.urls]
20+
"Homepage" = "https://github.com/pymc-devs/pytensor-workshop"

pytensor_workshop/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from pytensor_puzzle.src import test

pytensor_workshop/src.py

Whitespace-only changes.

0 commit comments

Comments
 (0)