File tree Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Expand file tree Collapse file tree 3 files changed +14
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## 1.0.1
4
+
5
+ ### Bug Fixes
6
+
7
+ - Make sure not to include additional packages in dist (https://github.com/bachorp/lazy-imports/issues/4 )
8
+
9
+ ### Documentation
10
+
11
+ - fix link to Philip May (https://github.com/bachorp/lazy-imports/pull/1 ) by @PhilipMay
12
+ - utilize dedicated license parameter (https://github.com/bachorp/lazy-imports/pull/5/commits/66200c1f82a56f6aed98f2456ebe59c9a0406856 )
13
+
3
14
## 1.0.0
4
15
5
16
` v1 ` introduces a new class ` LazyModule ` , an improved version of ` LazyImporter ` , which
Original file line number Diff line number Diff line change 22
22
23
23
# Versioning follows the Semantic Versioning Specification https://semver.org/ and
24
24
# PEP 440 -- Version Identification and Dependency Specification: https://www.python.org/dev/peps/pep-0440/ # noqa: E501
25
- __version__ = "1.0.0 "
25
+ __version__ = "1.0.1 "
26
26
27
27
__all__ = [
28
28
# .lazy_module
Original file line number Diff line number Diff line change @@ -67,15 +67,15 @@ def get_version():
67
67
"Bug Tracker" : source_code + "/issues" ,
68
68
"Source Code" : source_code ,
69
69
},
70
- packages = setuptools . find_packages () ,
70
+ packages = [ "lazy_imports" , "lazy_imports.v0" ] ,
71
71
python_requires = ">=3.9" ,
72
72
install_requires = install_requires ,
73
73
extras_require = extras_require ,
74
74
keywords = keywords ,
75
+ license = "Apache-2.0" ,
75
76
classifiers = [
76
77
"Development Status :: 5 - Production/Stable" ,
77
78
"Intended Audience :: Developers" ,
78
- "License :: OSI Approved :: Apache Software License" ,
79
79
"Programming Language :: Python :: 3" ,
80
80
"Programming Language :: Python :: 3.9" ,
81
81
"Programming Language :: Python :: 3.10" ,
You can’t perform that action at this time.
0 commit comments