ipsyc 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.
- ipsyc-0.0.1/PKG-INFO +16 -0
- ipsyc-0.0.1/README.md +5 -0
- ipsyc-0.0.1/ipsyc/__init__.py +0 -0
- ipsyc-0.0.1/ipsyc.egg-info/PKG-INFO +16 -0
- ipsyc-0.0.1/ipsyc.egg-info/SOURCES.txt +7 -0
- ipsyc-0.0.1/ipsyc.egg-info/dependency_links.txt +1 -0
- ipsyc-0.0.1/ipsyc.egg-info/top_level.txt +1 -0
- ipsyc-0.0.1/pyproject.toml +18 -0
- ipsyc-0.0.1/setup.cfg +4 -0
ipsyc-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ipsyc
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: International Psychological Scales & Constructs (placeholder)
|
|
5
|
+
Author-email: Cole Rehbein <cole.rehbein@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/colerehbein/ipsyc
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Science/Research
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# iPSYC
|
|
13
|
+
|
|
14
|
+
International Psychological Scales & Constructs.
|
|
15
|
+
|
|
16
|
+
Coming soon.
|
ipsyc-0.0.1/README.md
ADDED
|
File without changes
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: ipsyc
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: International Psychological Scales & Constructs (placeholder)
|
|
5
|
+
Author-email: Cole Rehbein <cole.rehbein@gmail.com>
|
|
6
|
+
Project-URL: Homepage, https://github.com/colerehbein/ipsyc
|
|
7
|
+
Classifier: Development Status :: 1 - Planning
|
|
8
|
+
Classifier: Intended Audience :: Science/Research
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
# iPSYC
|
|
13
|
+
|
|
14
|
+
International Psychological Scales & Constructs.
|
|
15
|
+
|
|
16
|
+
Coming soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ipsyc
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "ipsyc"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "International Psychological Scales & Constructs (placeholder)"
|
|
9
|
+
authors = [{name = "Cole Rehbein", email = "cole.rehbein@gmail.com"}]
|
|
10
|
+
readme = "README.md"
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 1 - Planning",
|
|
14
|
+
"Intended Audience :: Science/Research",
|
|
15
|
+
]
|
|
16
|
+
|
|
17
|
+
[project.urls]
|
|
18
|
+
Homepage = "https://github.com/colerehbein/ipsyc"
|
ipsyc-0.0.1/setup.cfg
ADDED