snuhai 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- snuhai-0.0.1/PKG-INFO +25 -0
- snuhai-0.0.1/README.md +7 -0
- snuhai-0.0.1/pyproject.toml +31 -0
- snuhai-0.0.1/src/snuhai/__init__.py +10 -0
snuhai-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: snuhai
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved name. SNUH AI tooling will publish here. Until then this is a placeholder.
|
|
5
|
+
Project-URL: Homepage, https://snuh.org
|
|
6
|
+
Author-email: Seoul National University Hospital <vital@snu.ac.kr>
|
|
7
|
+
License: Apache-2.0
|
|
8
|
+
Keywords: placeholder,snuh,snuhai
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Healthcare Industry
|
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Topic :: Scientific/Engineering :: Medical Science Apps.
|
|
16
|
+
Requires-Python: >=3.10
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# snuhai
|
|
20
|
+
|
|
21
|
+
Reserved on PyPI by Seoul National University Hospital. This 0.0.1
|
|
22
|
+
release is a placeholder so the package name cannot be squatted before
|
|
23
|
+
SNUH AI's real tooling ships here.
|
|
24
|
+
|
|
25
|
+
For SNUH SuperTable, install `khdp` and use `from khdp.supertable import Client`.
|
snuhai-0.0.1/README.md
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
# snuhai
|
|
2
|
+
|
|
3
|
+
Reserved on PyPI by Seoul National University Hospital. This 0.0.1
|
|
4
|
+
release is a placeholder so the package name cannot be squatted before
|
|
5
|
+
SNUH AI's real tooling ships here.
|
|
6
|
+
|
|
7
|
+
For SNUH SuperTable, install `khdp` and use `from khdp.supertable import Client`.
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["hatchling"]
|
|
3
|
+
build-backend = "hatchling.build"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "snuhai"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Reserved name. SNUH AI tooling will publish here. Until then this is a placeholder."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "Apache-2.0" }
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "Seoul National University Hospital", email = "vital@snu.ac.kr" },
|
|
14
|
+
]
|
|
15
|
+
keywords = ["snuh", "snuhai", "placeholder"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 1 - Planning",
|
|
18
|
+
"Intended Audience :: Healthcare Industry",
|
|
19
|
+
"License :: OSI Approved :: Apache Software License",
|
|
20
|
+
"Operating System :: OS Independent",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Programming Language :: Python :: 3.10",
|
|
23
|
+
"Topic :: Scientific/Engineering :: Medical Science Apps.",
|
|
24
|
+
]
|
|
25
|
+
dependencies = []
|
|
26
|
+
|
|
27
|
+
[project.urls]
|
|
28
|
+
Homepage = "https://snuh.org"
|
|
29
|
+
|
|
30
|
+
[tool.hatch.build.targets.wheel]
|
|
31
|
+
packages = ["src/snuhai"]
|