Skip to content

Commit 63c75a4

Browse files
committed
generalize imports; increment version
1 parent a9a69b6 commit 63c75a4

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

datascience/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
from .table import Table
2-
from .maps import maps
1+
from .table import *
2+
from .maps import *

datascience/maps/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
from .loader import init_js
2-
from .maps import draw_map
1+
from .loader import *
2+
from .maps import *
33

44
init_js()

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ def run_tests(self):
4242

4343
setup(
4444
name = 'datascience',
45-
py_modules = ['datascience'],
46-
version = '0.2.1',
45+
packages = ['datascience'],
46+
version = '0.2.2',
4747
install_requires = install_requires,
4848
tests_require = test_requires,
4949
data_files = data_files,
5050
cmdclass = {'test': PyTest},
51-
description = 'A Python library for introductory data science',
51+
description = 'A Jupyter notebook Python library for introductory data science',
5252
author = 'John DeNero, David Culler, Alvin Wan, Sam Lau',
5353
author_email = '[email protected]',
5454
url = 'https://github.com/dsten/datascience',

0 commit comments

Comments
 (0)