File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 22
33import pathlib
44
5- from setuptools import setup
5+ from setuptools import setup , find_packages
66
77
88def get_requirement (name ):
@@ -19,17 +19,15 @@ def get_requirements(requirements):
1919
2020setup (
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" ,
You can’t perform that action at this time.
0 commit comments