Migration commit from heyvince.co to heyvince.ca
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
from setuptools import setup, find_packages
|
||||
|
||||
setup(
|
||||
name='dft',
|
||||
version='0.1.0',
|
||||
packages=find_packages(),
|
||||
include_package_data=True,
|
||||
description='Data flow tools',
|
||||
long_description='Use dft to do extraction and load in your data pipeline',
|
||||
author='Vincent Goineau',
|
||||
author_email='vgoineau@ctocollective.com',
|
||||
package_data={
|
||||
'dft': ['templates/*.jinja'],
|
||||
},
|
||||
install_requires=[
|
||||
'click',
|
||||
'sqlalchemy',
|
||||
'alembic',
|
||||
'jinja2',
|
||||
],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'dft = cli:cli',
|
||||
],
|
||||
},
|
||||
)
|
||||
Reference in New Issue
Block a user