-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #49 from KrisThielemans/README_update
README updates
- Loading branch information
Showing
6 changed files
with
52 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# PETSIRD Python SDK | ||
|
||
The [Emission Tomography Standardization Initiative (ETSI)](https://etsinitiative.org/) | ||
is working towards establishing a standard for PET Raw Data, called PETSIRD ("Positron Emission Tomography Standardization Initiative Raw Data"). | ||
|
||
Read & write PETSIRD data in Python. | ||
|
||
## Examples | ||
|
||
See [ETSInitiative/PETSIRD:python](https://github.com/ETSInitiative/PETSIRD/tree/main/python). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" | |
name = "petsird" | ||
dynamic = ["version"] | ||
description = "Library and tools for working with PET Emission Tomography Standardization Initiative Raw Data (PETSIRD) data" | ||
readme = "README.md" | ||
readme = "README.pypi.md" | ||
authors = [ | ||
# TODO | ||
{name = "Kris Thielemans", email = "[email protected]"}, | ||
|
@@ -28,7 +28,9 @@ classifiers = [ | |
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Programming Language :: Python :: 3 :: Only"] | ||
"Programming Language :: Python :: 3 :: Only", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Medical Science Apps."] | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["petsird", "petsird.*"] | ||
|