Skip to content

Commit

Permalink
added nltk dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco Mariani committed Feb 29, 2012
1 parent 4074f8a commit fc6a37f
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions setup.py
Expand Up @@ -15,6 +15,12 @@ def read(*rnames):

tests_require = ['zope.testing']


requires = [
'setuptools',
'nltk',
]

setup(name='rt.semantic',
version=version,
description="RedTurtle Semantic",
Expand All @@ -33,9 +39,7 @@ def read(*rnames):
namespace_packages=['rt'],
include_package_data=True,
zip_safe=False,
install_requires=['setuptools',
# -*- Extra requirements: -*-
],
install_requires=requires,
tests_require=tests_require,
extras_require=dict(tests=tests_require),
test_suite='',
Expand Down

0 comments on commit fc6a37f

Please sign in to comment.