tcat-ingest 0.0.0__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.
- tcat_ingest-0.0.0/PKG-INFO +36 -0
- tcat_ingest-0.0.0/README.md +21 -0
- tcat_ingest-0.0.0/pyproject.toml +25 -0
- tcat_ingest-0.0.0/setup.cfg +4 -0
- tcat_ingest-0.0.0/src/tcat_ingest/__init__.py +10 -0
- tcat_ingest-0.0.0/src/tcat_ingest.egg-info/PKG-INFO +36 -0
- tcat_ingest-0.0.0/src/tcat_ingest.egg-info/SOURCES.txt +7 -0
- tcat_ingest-0.0.0/src/tcat_ingest.egg-info/dependency_links.txt +1 -0
- tcat_ingest-0.0.0/src/tcat_ingest.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tcat-ingest
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Name reservation for the TransientCatalysis project -- Ingestion of datasets against the data standard. Not the real package.
|
|
5
|
+
Author-email: "A. J. Medford" <ajm@gatech.edu>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/TransientCatalysis
|
|
8
|
+
Keywords: placeholder,transient-kinetics,catalysis
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# tcat-ingest -- name reservation
|
|
17
|
+
|
|
18
|
+
**This is a placeholder. It contains no functionality.**
|
|
19
|
+
|
|
20
|
+
`tcat-ingest` belongs to the [TransientCatalysis]
|
|
21
|
+
(https://github.com/TransientCatalysis) project -- ingestion of datasets against the data standard.
|
|
22
|
+
The real package is installed from GitHub:
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
pip install "git+https://github.com/TransientCatalysis/tcat-ingest.git@main"
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
The name is registered here so that it cannot be taken by someone else
|
|
29
|
+
and silently installed in place of ours. That is not hypothetical for
|
|
30
|
+
this project: `pip install pounce` already gets an unrelated file
|
|
31
|
+
downloader, which is why our own documentation warns against it.
|
|
32
|
+
|
|
33
|
+
If this package is ever superseded by a real release, it will be at
|
|
34
|
+
version 0.1.0 or above. Version 0.0.0 is always the placeholder.
|
|
35
|
+
|
|
36
|
+
Contact: ajm@gatech.edu
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# tcat-ingest -- name reservation
|
|
2
|
+
|
|
3
|
+
**This is a placeholder. It contains no functionality.**
|
|
4
|
+
|
|
5
|
+
`tcat-ingest` belongs to the [TransientCatalysis]
|
|
6
|
+
(https://github.com/TransientCatalysis) project -- ingestion of datasets against the data standard.
|
|
7
|
+
The real package is installed from GitHub:
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
pip install "git+https://github.com/TransientCatalysis/tcat-ingest.git@main"
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The name is registered here so that it cannot be taken by someone else
|
|
14
|
+
and silently installed in place of ours. That is not hypothetical for
|
|
15
|
+
this project: `pip install pounce` already gets an unrelated file
|
|
16
|
+
downloader, which is why our own documentation warns against it.
|
|
17
|
+
|
|
18
|
+
If this package is ever superseded by a real release, it will be at
|
|
19
|
+
version 0.1.0 or above. Version 0.0.0 is always the placeholder.
|
|
20
|
+
|
|
21
|
+
Contact: ajm@gatech.edu
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tcat-ingest"
|
|
7
|
+
version = "0.0.0"
|
|
8
|
+
description = "Name reservation for the TransientCatalysis project -- Ingestion of datasets against the data standard. Not the real package."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.9"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [{name = "A. J. Medford", email = "ajm@gatech.edu"}]
|
|
13
|
+
keywords = ["placeholder", "transient-kinetics", "catalysis"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Science/Research",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[project.urls]
|
|
22
|
+
Homepage = "https://github.com/TransientCatalysis"
|
|
23
|
+
|
|
24
|
+
[tool.setuptools.packages.find]
|
|
25
|
+
where = ["src"]
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"""Placeholder reserving the name `tcat-ingest` on PyPI.
|
|
2
|
+
|
|
3
|
+
The real package lives at https://github.com/TransientCatalysis/tcat-ingest
|
|
4
|
+
and is installed from git. This distribution exists only so the name
|
|
5
|
+
cannot be taken by somebody else.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.0"
|
|
9
|
+
PLACEHOLDER = True
|
|
10
|
+
REAL_PACKAGE = "https://github.com/TransientCatalysis/tcat-ingest"
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tcat-ingest
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Name reservation for the TransientCatalysis project -- Ingestion of datasets against the data standard. Not the real package.
|
|
5
|
+
Author-email: "A. J. Medford" <ajm@gatech.edu>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/TransientCatalysis
|
|
8
|
+
Keywords: placeholder,transient-kinetics,catalysis
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Requires-Python: >=3.9
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
|
|
16
|
+
# tcat-ingest -- name reservation
|
|
17
|
+
|
|
18
|
+
**This is a placeholder. It contains no functionality.**
|
|
19
|
+
|
|
20
|
+
`tcat-ingest` belongs to the [TransientCatalysis]
|
|
21
|
+
(https://github.com/TransientCatalysis) project -- ingestion of datasets against the data standard.
|
|
22
|
+
The real package is installed from GitHub:
|
|
23
|
+
|
|
24
|
+
```
|
|
25
|
+
pip install "git+https://github.com/TransientCatalysis/tcat-ingest.git@main"
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
The name is registered here so that it cannot be taken by someone else
|
|
29
|
+
and silently installed in place of ours. That is not hypothetical for
|
|
30
|
+
this project: `pip install pounce` already gets an unrelated file
|
|
31
|
+
downloader, which is why our own documentation warns against it.
|
|
32
|
+
|
|
33
|
+
If this package is ever superseded by a real release, it will be at
|
|
34
|
+
version 0.1.0 or above. Version 0.0.0 is always the placeholder.
|
|
35
|
+
|
|
36
|
+
Contact: ajm@gatech.edu
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tcat_ingest
|