Skip to content

Commit 603e10d

Browse files
committed
move files and fix tests
1 parent 520e1eb commit 603e10d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed
File renamed without changes.

datascience/__init__.py

Whitespace-only changes.

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,16 @@ def run_tests(self):
3333

3434
setup(
3535
name = 'datascience',
36-
packages = ['datascience'],
37-
version = '0.1.0',
36+
py_modules = ['datascience'],
37+
version = '0.1.1',
3838
install_requires = install_requires,
3939
tests_require = test_requires,
4040
cmdclass = {'test': PyTest},
41-
description = 'datatools for UC Berkeley\'s DS10 course',
41+
description = 'A Python library for introductory data science',
4242
author = 'John DeNero, David Culler, Alvin Wan',
4343
author_email = 'ds-instr@berkeley.edu',
4444
url = 'https://github.com/dsten/datascience',
45-
download_url = 'https://github.com/dsten/datascience/archive/0.1.0.zip',
45+
download_url = 'https://github.com/dsten/datascience/archive/0.1.1.zip',
4646
keywords = ['data', 'tools', 'berkeley'],
4747
classifiers = [],
4848
)

tests/test_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
from datatools.data import *
21
import re
32
import pytest
43
from numpy.testing import assert_array_equal
4+
from datascience import *
55

66

77
#########

0 commit comments

Comments
 (0)