Skip to content

Commit

Permalink
ModuleNotFoundError #25
Browse files Browse the repository at this point in the history
Use find_packages.
  • Loading branch information
dpetzold committed Dec 7, 2021
1 parent ec7c8a3 commit 5883d32
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import pathlib

from setuptools import setup
from setuptools import setup, find_packages


def get_requirement(name):
Expand All @@ -19,17 +19,15 @@ def get_requirements(requirements):

setup(
name="aws-log-parser",
version="2.0.0",
version="2.1.0",
description="Parse AWS CloudFront and LoadBalancer logs into Python dataclasses",
long_description=(pathlib.Path(__file__).parent / "README.md").read_text(),
long_description_content_type="text/markdown",
url="https://github.com/dpetzold/aws-log-parser",
author="Derrick Petzold",
author_email="[email protected]",
license="Apache",
packages=[
"aws_log_parser",
],
packages=find_packages(),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
Expand Down

0 comments on commit 5883d32

Please sign in to comment.