Skip to content

Commit 824af67

Browse files
authored
Merge pull request #5 from bachorp/dontpackagetests
Fixes in setup.py
2 parents ecb54e0 + b423b90 commit 824af67

File tree

3 files changed

+14
-3
lines changed

3 files changed

+14
-3
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

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+
314
## 1.0.0
415

516
`v1` introduces a new class `LazyModule`, an improved version of `LazyImporter`, which

lazy_imports/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
# Versioning follows the Semantic Versioning Specification https://semver.org/ and
2424
# 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"
2626

2727
__all__ = [
2828
# .lazy_module

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,15 +67,15 @@ def get_version():
6767
"Bug Tracker": source_code + "/issues",
6868
"Source Code": source_code,
6969
},
70-
packages=setuptools.find_packages(),
70+
packages=["lazy_imports", "lazy_imports.v0"],
7171
python_requires=">=3.9",
7272
install_requires=install_requires,
7373
extras_require=extras_require,
7474
keywords=keywords,
75+
license="Apache-2.0",
7576
classifiers=[
7677
"Development Status :: 5 - Production/Stable",
7778
"Intended Audience :: Developers",
78-
"License :: OSI Approved :: Apache Software License",
7979
"Programming Language :: Python :: 3",
8080
"Programming Language :: Python :: 3.9",
8181
"Programming Language :: Python :: 3.10",

0 commit comments

Comments
 (0)