Skip to content

Commit

Permalink
Remove test_requires
Browse files Browse the repository at this point in the history
We don't use python setup.py test
  • Loading branch information
sloria committed Dec 3, 2017
1 parent d2c4774 commit 64fdd18
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Expand Up @@ -4,8 +4,6 @@
from setuptools import setup, find_packages

REQUIREMENTS = ['nltk>=3.1']
TEST_REQUIREMENTS = ['nose', 'mock']


def find_version(fname):
"""Attempts to find the version number in the file names fname.
Expand All @@ -23,14 +21,16 @@ def find_version(fname):
raise RuntimeError('Cannot find version information')
return version

__version__ = find_version("textblob/__init__.py")

__version__ = find_version('textblob/__init__.py')


def read(fname):
with open(fname) as fp:
content = fp.read()
return content


setup(
name='textblob',
version=__version__,
Expand Down Expand Up @@ -61,6 +61,5 @@ def read(fname):
'Programming Language :: Python :: Implementation :: PyPy',
"Topic :: Text Processing :: Linguistic",
),
tests_require=TEST_REQUIREMENTS,
keywords=["textblob", "nlp", 'linguistics', 'nltk', 'pattern']
)

0 comments on commit 64fdd18

Please sign in to comment.