Skip to content

Commit

Permalink
bits needed for packaging
Browse files Browse the repository at this point in the history
  • Loading branch information
codeforkjeff committed Nov 10, 2020
1 parent 1aeee76 commit 7162285
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

# Setuptools distribution folder.
/dist/
/build

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

# sublime text
*.sublime-*

.idea/
1 change: 1 addition & 0 deletions dbt/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
1 change: 1 addition & 0 deletions dbt/adapters/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
1 change: 1 addition & 0 deletions dbt/include/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
13 changes: 12 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,21 @@
package_data={
'dbt': [
'include/sqlite/macros/*.sql',
'include/sqlite/macros/**/*.sql',
'include/sqlite/macros/**/**/*.sql',
'include/sqlite/dbt_project.yml',
]
},
install_requires=[
"dbt-core>=0.18.0",
"dbt-core~=0.18.0",
],
classifiers=[
'Development Status :: 3 - Alpha',

'License :: OSI Approved :: Apache Software License',

'Operating System :: Microsoft :: Windows',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX :: Linux'
]
)

0 comments on commit 7162285

Please sign in to comment.