Skip to content

Commit 64fdd18

Browse files
committed
Remove test_requires
We don't use python setup.py test
1 parent d2c4774 commit 64fdd18

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

setup.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
from setuptools import setup, find_packages
55

66
REQUIREMENTS = ['nltk>=3.1']
7-
TEST_REQUIREMENTS = ['nose', 'mock']
8-
97

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

26-
__version__ = find_version("textblob/__init__.py")
24+
25+
__version__ = find_version('textblob/__init__.py')
2726

2827

2928
def read(fname):
3029
with open(fname) as fp:
3130
content = fp.read()
3231
return content
3332

33+
3434
setup(
3535
name='textblob',
3636
version=__version__,
@@ -61,6 +61,5 @@ def read(fname):
6161
'Programming Language :: Python :: Implementation :: PyPy',
6262
"Topic :: Text Processing :: Linguistic",
6363
),
64-
tests_require=TEST_REQUIREMENTS,
6564
keywords=["textblob", "nlp", 'linguistics', 'nltk', 'pattern']
6665
)

0 commit comments

Comments
 (0)