Skip to content

Commit c01811e

Browse files
committed
preparing for first release
1 parent 3ed7123 commit c01811e

6 files changed

Lines changed: 38 additions & 62 deletions

File tree

.github/workflows/publish.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Publish to PyPI
2+
3+
on:
4+
push:
5+
tags:
6+
- "v*"
7+
8+
jobs:
9+
pypi-publish:
10+
runs-on: ubuntu-latest
11+
permissions:
12+
id-token: write
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- uses: actions/setup-python@v5
18+
with:
19+
python-version: "3.x"
20+
21+
- name: Build
22+
run: |
23+
python -m pip install --upgrade build
24+
python -m build
25+
26+
- name: Publish to PyPI
27+
uses: pypa/gh-action-pypi-publish@release/v1
-15.1 KB
Loading
-14.8 KB
Loading

docs/reference/data.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,6 @@
1313

1414
---
1515

16-
## Transforms (e.g., from RGB to model space)
17-
---
18-
19-
::: psyphy.data.transforms
20-
21-
---
22-
2316
## I/O
2417
---
2518

pyproject.toml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,17 @@ build-backend = "hatchling.build"
55
[project]
66
name = "psyphy"
77
version = "0.0.1"
8-
description = "Psychophysical modeling and adaptive trial placement"
8+
9+
authors = [
10+
{ name = "Alex Williams" },
11+
{ name = "Hanna Dettki" }
12+
]
13+
14+
maintainers = [
15+
{ name = "Hanna Dettki" }
16+
]
17+
18+
description = "Adaptive Trial Placement for Psychophysical Experiments"
919
readme = "README.md"
1020
license = {file = "LICENSE.md"}
1121
requires-python = ">=3.9"

src/psyphy/data/transforms.py

Lines changed: 0 additions & 54 deletions
This file was deleted.

0 commit comments

Comments
 (0)