Skip to content

Commit

Permalink
move files and fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
papajohn committed Jul 17, 2015
1 parent 520e1eb commit 603e10d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
File renamed without changes.
Empty file removed datascience/__init__.py
Empty file.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ def run_tests(self):

setup(
name = 'datascience',
packages = ['datascience'],
version = '0.1.0',
py_modules = ['datascience'],
version = '0.1.1',
install_requires = install_requires,
tests_require = test_requires,
cmdclass = {'test': PyTest},
description = 'datatools for UC Berkeley\'s DS10 course',
description = 'A Python library for introductory data science',
author = 'John DeNero, David Culler, Alvin Wan',
author_email = '[email protected]',
url = 'https://github.com/dsten/datascience',
download_url = 'https://github.com/dsten/datascience/archive/0.1.0.zip',
download_url = 'https://github.com/dsten/datascience/archive/0.1.1.zip',
keywords = ['data', 'tools', 'berkeley'],
classifiers = [],
)
2 changes: 1 addition & 1 deletion tests/test_data.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from datatools.data import *
import re
import pytest
from numpy.testing import assert_array_equal
from datascience import *


#########
Expand Down

0 comments on commit 603e10d

Please sign in to comment.