File tree Expand file tree Collapse file tree 4 files changed +7
-3
lines changed
Expand file tree Collapse file tree 4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
3+ ## 0.3.4 (2024-09-27)
4+
5+ - Remove ` __init__.py ` from kw folder
6+
37## 0.3.3 (2024-01-24)
48
59- Add support for structlog==24.1.0
Original file line number Diff line number Diff line change 1- 0.3.3
1+ 0.3.4
Original file line number Diff line number Diff line change 11from pathlib import Path
2- from setuptools import find_packages , setup
2+ from setuptools import find_namespace_packages , setup
33
44with open ("requirements.in" ) as f :
55 REQUIREMENTS = [line for line in f if line and line [0 ] not in "#-" ]
1515 url = "https://github.com/kiwicom/kiwi-structlog-config" ,
1616 author = "Booking Backend team" ,
171718- packages = find_packages (),
18+ packages = find_namespace_packages (),
1919 install_requires = REQUIREMENTS ,
2020 tests_require = TEST_REQUIREMENTS ,
2121 include_package_data = True ,
You can’t perform that action at this time.
0 commit comments