File tree Expand file tree Collapse file tree 5 files changed +18
-1
lines changed Expand file tree Collapse file tree 5 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 33
44# Setuptools distribution folder.
55/dist /
6+ /build
67
78# Python egg metadata, regenerated from source files by setuptools.
89/* .egg-info
1112
1213# sublime text
1314* .sublime- *
15+
16+ .idea /
Original file line number Diff line number Diff line change 1+ __path__ = __import__ ('pkgutil' ).extend_path (__path__ , __name__ )
Original file line number Diff line number Diff line change 1+ __path__ = __import__ ('pkgutil' ).extend_path (__path__ , __name__ )
Original file line number Diff line number Diff line change 1+ __path__ = __import__ ('pkgutil' ).extend_path (__path__ , __name__ )
Original file line number Diff line number Diff line change 1818 package_data = {
1919 'dbt' : [
2020 'include/sqlite/macros/*.sql' ,
21+ 'include/sqlite/macros/**/*.sql' ,
22+ 'include/sqlite/macros/**/**/*.sql' ,
2123 'include/sqlite/dbt_project.yml' ,
2224 ]
2325 },
2426 install_requires = [
25- "dbt-core>=0.18.0" ,
27+ "dbt-core~=0.18.0" ,
28+ ],
29+ classifiers = [
30+ 'Development Status :: 3 - Alpha' ,
31+
32+ 'License :: OSI Approved :: Apache Software License' ,
33+
34+ 'Operating System :: Microsoft :: Windows' ,
35+ 'Operating System :: MacOS :: MacOS X' ,
36+ 'Operating System :: POSIX :: Linux'
2637 ]
2738)
You can’t perform that action at this time.
0 commit comments