get-module-underlying 0.0.1__tar.gz → 0.1.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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: get_module_underlying
3
- Version: 0.0.1
3
+ Version: 0.1.0
4
4
  Summary: Explore Python modules deeper than dir()
5
5
  Home-page: UNKNOWN
6
6
  Author: San Zhang
@@ -116,7 +116,7 @@ Description: # get_module_underlying
116
116
  ## Dependencies
117
117
 
118
118
  - Python 3.6+
119
- - `absence` library (automatically installed)
119
+ - `absent` library (automatically installed)
120
120
 
121
121
  ## License
122
122
 
@@ -108,7 +108,7 @@ If the module is not valid, the method will:
108
108
  ## Dependencies
109
109
 
110
110
  - Python 3.6+
111
- - `absence` library (automatically installed)
111
+ - `absent` library (automatically installed)
112
112
 
113
113
  ## License
114
114
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: get-module-underlying
3
- Version: 0.0.1
3
+ Version: 0.1.0
4
4
  Summary: Explore Python modules deeper than dir()
5
5
  Home-page: UNKNOWN
6
6
  Author: San Zhang
@@ -116,7 +116,7 @@ Description: # get_module_underlying
116
116
  ## Dependencies
117
117
 
118
118
  - Python 3.6+
119
- - `absence` library (automatically installed)
119
+ - `absent` library (automatically installed)
120
120
 
121
121
  ## License
122
122
 
@@ -2,7 +2,7 @@ from setuptools import setup
2
2
 
3
3
  setup(
4
4
  name='get_module_underlying',
5
- version='0.0.1',
5
+ version='0.1.0',
6
6
  description='Explore Python modules deeper than dir()',
7
7
  long_description=open('README.md').read(),
8
8
  long_description_content_type='text/markdown',
@@ -12,5 +12,5 @@ setup(
12
12
  license='MIT',
13
13
  classifiers=['Programming Language :: Python :: 3'],
14
14
  python_requires='>=3.6',
15
- install_requires=['absence'],
15
+ install_requires=['absent'],
16
16
  )