Skip to content

Commit

Permalink
Structural changes needed for nose to run
Browse files Browse the repository at this point in the history
Nice for testing in general, and testing multiple versions of Python in
particular.

Nothing too controversial I hope.
  • Loading branch information
cmutel committed Feb 5, 2015
1 parent 3a48d9c commit 1e3a760
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 5 deletions.
5 changes: 3 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@ doc/_build
doc/*.pdf
build
dist

MANIFEST
*.egg-info

MANIFEST
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python
from setuptools import setup
import lib as asteval
import asteval

setup(name = 'asteval',
version = asteval.__version__,
Expand All @@ -9,7 +9,6 @@
url = 'http://github.com/newville/asteval',
license = 'BSD',
description = "Safe, minimalistic evaluator of python expression using ast module",
package_dir = {'asteval': 'lib'},
packages = ['asteval'],
)

Empty file added tests/__init__.py
Empty file.
2 changes: 1 addition & 1 deletion tests/test_1.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import numpy as np
from sys import version_info

from unittest_utils import TestCase
from .unittest_utils import TestCase

from asteval import NameFinder

Expand Down

0 comments on commit 1e3a760

Please sign in to comment.