Skip to content

Commit

Permalink
Tweaks to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarbatori committed Oct 23, 2019
1 parent 01333d4 commit dea8e63
Showing 1 changed file with 3 additions and 7 deletions.
10 changes: 3 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,4 @@
from setuptools import setup, find_packages
import os

PACKAGES_TO_DIRS = {'core': os.path.join('core', 'core'),
'etl': os.path.join('core', 'etl')}

setup(name='core',
version='0.1',
Expand All @@ -12,11 +8,11 @@
author_email='oscar@liquidata.co',
description='A Python package for using Dolt database via Python.',
url='https://github.com/liquidata-inc/doltpy',
keywords=['Dolt', 'Liquidata', 'DoltHub'],
keywords=['Dolt', 'Liquidata', 'DoltHub', 'ETL', 'ELT'],
project_urls={'Bug Tracker': 'https://github.com /liquidata-inc/core/issues'},
entry_points={
'console_scripts': [
'dolthub-load=etl:dolthub_loader_main',
'dolt-load=etl:dolt_loader_main'
'dolthub-load=doltpy.etl:dolthub_loader_main',
'dolt-load=doltpy.etl:dolt_loader_main'
]
})

0 comments on commit dea8e63

Please sign in to comment.