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.
@@ -1,21 +1,26 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: psu-python
3
- Version: 0.2.0
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
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
- Classifier: Development Status :: 4 - Beta
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.0'
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'
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 :: 4 - Beta',
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.0
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
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
- Classifier: Development Status :: 4 - Beta
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
 
@@ -8,4 +8,5 @@ src/psu_python/strings.py
8
8
  src/psu_python.egg-info/PKG-INFO
9
9
  src/psu_python.egg-info/SOURCES.txt
10
10
  src/psu_python.egg-info/dependency_links.txt
11
+ src/psu_python.egg-info/requires.txt
11
12
  src/psu_python.egg-info/top_level.txt
@@ -0,0 +1,5 @@
1
+
2
+ [docs]
3
+ sphinx>=4.0.0
4
+ furo
5
+ sphinx-autodoc-typehints
File without changes
File without changes