Skip to content

Commit 5883d32

Browse files
committed
ModuleNotFoundError #25
Use find_packages.
1 parent ec7c8a3 commit 5883d32

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import pathlib
44

5-
from setuptools import setup
5+
from setuptools import setup, find_packages
66

77

88
def get_requirement(name):
@@ -19,17 +19,15 @@ def get_requirements(requirements):
1919

2020
setup(
2121
name="aws-log-parser",
22-
version="2.0.0",
22+
version="2.1.0",
2323
description="Parse AWS CloudFront and LoadBalancer logs into Python dataclasses",
2424
long_description=(pathlib.Path(__file__).parent / "README.md").read_text(),
2525
long_description_content_type="text/markdown",
2626
url="https://github.com/dpetzold/aws-log-parser",
2727
author="Derrick Petzold",
2828
author_email="github@petzold.io",
2929
license="Apache",
30-
packages=[
31-
"aws_log_parser",
32-
],
30+
packages=find_packages(),
3331
classifiers=[
3432
"Development Status :: 5 - Production/Stable",
3533
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)