psu-python 0.2.0__tar.gz → 0.2.3__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.
- {psu_python-0.2.0/src/psu_python.egg-info → psu_python-0.2.3}/PKG-INFO +9 -4
- {psu_python-0.2.0 → psu_python-0.2.3}/README.md +1 -1
- {psu_python-0.2.0 → psu_python-0.2.3}/pyproject.toml +13 -3
- {psu_python-0.2.0 → psu_python-0.2.3/src/psu_python.egg-info}/PKG-INFO +9 -4
- {psu_python-0.2.0 → psu_python-0.2.3}/src/psu_python.egg-info/SOURCES.txt +1 -0
- psu_python-0.2.3/src/psu_python.egg-info/requires.txt +5 -0
- {psu_python-0.2.0 → psu_python-0.2.3}/LICENSE +0 -0
- {psu_python-0.2.0 → psu_python-0.2.3}/setup.cfg +0 -0
- {psu_python-0.2.0 → psu_python-0.2.3}/src/psu_python/__init__.py +0 -0
- {psu_python-0.2.0 → psu_python-0.2.3}/src/psu_python/dictionaries.py +0 -0
- {psu_python-0.2.0 → psu_python-0.2.3}/src/psu_python/lists.py +0 -0
- {psu_python-0.2.0 → psu_python-0.2.3}/src/psu_python/strings.py +0 -0
- {psu_python-0.2.0 → psu_python-0.2.3}/src/psu_python.egg-info/dependency_links.txt +0 -0
- {psu_python-0.2.0 → psu_python-0.2.3}/src/psu_python.egg-info/top_level.txt +0 -0
|
@@ -1,21 +1,26 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: psu-python
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.2.3
|
|
4
|
+
Summary: A python package for abstracting python class methods behind a fully functional layer intended for educational use in CMPSC 131 at The Pennsylvania State University
|
|
5
5
|
Author-email: Theodore Tasman <psupython@ttasman.com>
|
|
6
6
|
License-Expression: GPL-3.0
|
|
7
|
-
|
|
7
|
+
Project-URL: Homepage, https://tedtasman.github.io/psu-python/
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
8
9
|
Classifier: Intended Audience :: Education
|
|
9
10
|
Classifier: Programming Language :: Python :: 3
|
|
10
11
|
Classifier: Operating System :: OS Independent
|
|
11
12
|
Classifier: Natural Language :: English
|
|
12
13
|
Description-Content-Type: text/markdown
|
|
13
14
|
License-File: LICENSE
|
|
15
|
+
Provides-Extra: docs
|
|
16
|
+
Requires-Dist: sphinx>=4.0.0; extra == "docs"
|
|
17
|
+
Requires-Dist: furo; extra == "docs"
|
|
18
|
+
Requires-Dist: sphinx-autodoc-typehints; extra == "docs"
|
|
14
19
|
Dynamic: license-file
|
|
15
20
|
|
|
16
21
|
# PSU Python
|
|
17
22
|
|
|
18
|
-
A python package for abstracting python class methods behind a fully functional layer. Intended for educational use in CMPSC 131 at The Pennsylvania State University
|
|
23
|
+
A python package for abstracting python class methods behind a fully functional layer. Intended for educational use in CMPSC 131 at The Pennsylvania State University. [Packaged for distribution on PyPi](https://pypi.org/project/psu-python/)
|
|
19
24
|
|
|
20
25
|
## Usage
|
|
21
26
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# PSU Python
|
|
2
2
|
|
|
3
|
-
A python package for abstracting python class methods behind a fully functional layer. Intended for educational use in CMPSC 131 at The Pennsylvania State University
|
|
3
|
+
A python package for abstracting python class methods behind a fully functional layer. Intended for educational use in CMPSC 131 at The Pennsylvania State University. [Packaged for distribution on PyPi](https://pypi.org/project/psu-python/)
|
|
4
4
|
|
|
5
5
|
## Usage
|
|
6
6
|
|
|
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name='psu-python'
|
|
7
|
-
version='0.2.
|
|
8
|
-
description='
|
|
7
|
+
version='0.2.3'
|
|
8
|
+
description='A python package for abstracting python class methods behind a fully functional layer intended for educational use in CMPSC 131 at The Pennsylvania State University'
|
|
9
9
|
authors=[
|
|
10
10
|
{name='Theodore Tasman', email='psupython@ttasman.com'}
|
|
11
11
|
]
|
|
@@ -13,10 +13,20 @@ license='GPL-3.0'
|
|
|
13
13
|
readme='README.md'
|
|
14
14
|
dependencies=[]
|
|
15
15
|
classifiers=[
|
|
16
|
-
'Development Status ::
|
|
16
|
+
'Development Status :: 3 - Alpha',
|
|
17
17
|
'Intended Audience :: Education',
|
|
18
18
|
'Programming Language :: Python :: 3',
|
|
19
19
|
'Operating System :: OS Independent',
|
|
20
20
|
'Natural Language :: English',
|
|
21
21
|
]
|
|
22
22
|
|
|
23
|
+
[project.optional-dependencies]
|
|
24
|
+
docs = [
|
|
25
|
+
"sphinx>=4.0.0",
|
|
26
|
+
"furo",
|
|
27
|
+
"sphinx-autodoc-typehints",
|
|
28
|
+
]
|
|
29
|
+
|
|
30
|
+
[project.urls]
|
|
31
|
+
Homepage = 'https://tedtasman.github.io/psu-python/'
|
|
32
|
+
|
|
@@ -1,21 +1,26 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: psu-python
|
|
3
|
-
Version: 0.2.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.2.3
|
|
4
|
+
Summary: A python package for abstracting python class methods behind a fully functional layer intended for educational use in CMPSC 131 at The Pennsylvania State University
|
|
5
5
|
Author-email: Theodore Tasman <psupython@ttasman.com>
|
|
6
6
|
License-Expression: GPL-3.0
|
|
7
|
-
|
|
7
|
+
Project-URL: Homepage, https://tedtasman.github.io/psu-python/
|
|
8
|
+
Classifier: Development Status :: 3 - Alpha
|
|
8
9
|
Classifier: Intended Audience :: Education
|
|
9
10
|
Classifier: Programming Language :: Python :: 3
|
|
10
11
|
Classifier: Operating System :: OS Independent
|
|
11
12
|
Classifier: Natural Language :: English
|
|
12
13
|
Description-Content-Type: text/markdown
|
|
13
14
|
License-File: LICENSE
|
|
15
|
+
Provides-Extra: docs
|
|
16
|
+
Requires-Dist: sphinx>=4.0.0; extra == "docs"
|
|
17
|
+
Requires-Dist: furo; extra == "docs"
|
|
18
|
+
Requires-Dist: sphinx-autodoc-typehints; extra == "docs"
|
|
14
19
|
Dynamic: license-file
|
|
15
20
|
|
|
16
21
|
# PSU Python
|
|
17
22
|
|
|
18
|
-
A python package for abstracting python class methods behind a fully functional layer. Intended for educational use in CMPSC 131 at The Pennsylvania State University
|
|
23
|
+
A python package for abstracting python class methods behind a fully functional layer. Intended for educational use in CMPSC 131 at The Pennsylvania State University. [Packaged for distribution on PyPi](https://pypi.org/project/psu-python/)
|
|
19
24
|
|
|
20
25
|
## Usage
|
|
21
26
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|