Skip to content
This repository was archived by the owner on Feb 26, 2025. It is now read-only.

Commit 98ce121

Browse files
committed
Initial commit
0 parents  commit 98ce121

File tree

7 files changed

+121
-0
lines changed

7 files changed

+121
-0
lines changed

.github/workflows/check-pr-release.yml

Whitespace-only changes.

.gitignore

+56
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# .gitignore file
2+
3+
# Backup files
4+
*~
5+
6+
# Lock files used by the Emacs editor.
7+
.\#*
8+
9+
# Temporary files used by editors.
10+
*.swp
11+
*.orig
12+
*.bak
13+
14+
# A hidden file created by the Mac OS X Finder.
15+
.DS_Store
16+
17+
# python byte-code files
18+
*.pyc
19+
*.pyo
20+
21+
# Build/dist files
22+
dist/*
23+
build/*
24+
pydicom.egg-info/*
25+
distribute*.egg
26+
distribute*.tar.gz
27+
py3source
28+
.tox/*
29+
30+
# Docs build
31+
docs/_build/*
32+
doc/_build/*
33+
doc/auto_examples/*
34+
doc/generated/*
35+
doc/reference/generated/*
36+
37+
# coverage.py files
38+
.coverage
39+
40+
# PyCharm IDE files
41+
*.idea*
42+
43+
44+
# jupyter notebooks
45+
*.ipynb
46+
.ipynb_checkpoints/*
47+
tests/test_pixel.py
48+
49+
# mypy
50+
pydicom/.mypy_cache/*
51+
52+
# vscode
53+
.vscode/*
54+
55+
# virtualenv
56+
env/

LICENSE

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Copyright (c) 2021 pydicom contributors
2+
3+
Except for portions outlined below, pydicom is released under an MIT license:
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
pydicom-data-sr
2+
3+
Optional data tables for DICOM Structured Reports

setup.py

+38
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
from setuptools import setup, find_packages
2+
3+
setup(
4+
name = "pydicom-data-sr",
5+
packages = find_packages(),
6+
include_package_data = True,
7+
version = __version__,
8+
zip_safe = False,
9+
description = "",
10+
long_description = "",
11+
long_description_content_type = "text/markdown",
12+
author = "scaramallion",
13+
author_email = "[email protected]",
14+
url = "https://github.com/pydicom/pydicom-sr-data",
15+
license = "MIT",
16+
keywords = "dicom python pydicom sr structuredreports",
17+
classifiers = [
18+
"License :: OSI Approved :: MIT License",
19+
"Intended Audience :: Developers",
20+
"Intended Audience :: Healthcare Industry",
21+
"Intended Audience :: Science/Research",
22+
"Development Status :: 1 - Planning",
23+
"Natural Language :: English",
24+
"Programming Language :: Python :: 3.6",
25+
"Programming Language :: Python :: 3.7",
26+
"Programming Language :: Python :: 3.8",
27+
"Programming Language :: Python :: 3.9",
28+
"Operating System :: OS Independent",
29+
"Topic :: Scientific/Engineering :: Medical Science Apps.",
30+
"Topic :: Software Development :: Libraries",
31+
],
32+
python_requires = ">=3.6",
33+
setup_requires = ["setuptools>=18.0"],
34+
install_requires = [],
35+
entry_points = {
36+
"pydicom.data.external_sources": "pydicom-data-sr = srdata:DataStore",
37+
}
38+
)

srdata/__init__.py

Whitespace-only changes.

srdata/_version.py

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
3+
__version__: str = "2021b"

0 commit comments

Comments
 (0)