Skip to content

Commit 7162285

Browse files
committed
bits needed for packaging
1 parent 1aeee76 commit 7162285

File tree

5 files changed

+18
-1
lines changed

5 files changed

+18
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33

44
# Setuptools distribution folder.
55
/dist/
6+
/build
67

78
# Python egg metadata, regenerated from source files by setuptools.
89
/*.egg-info
@@ -11,3 +12,5 @@ env/
1112

1213
# sublime text
1314
*.sublime-*
15+
16+
.idea/

dbt/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__path__ = __import__('pkgutil').extend_path(__path__, __name__)

dbt/adapters/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__path__ = __import__('pkgutil').extend_path(__path__, __name__)

dbt/include/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__path__ = __import__('pkgutil').extend_path(__path__, __name__)

setup.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,21 @@
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
)

0 commit comments

Comments
 (0)