Skip to content
This repository has been archived by the owner on Dec 16, 2022. It is now read-only.

Commit

Permalink
Prevent tests from being installed as module by setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
nelson-liu committed May 18, 2018
1 parent 9ef013d commit 68483cd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
setup(name='allennlp',
version=VERSION["VERSION"],
description='An open-source NLP research library, built on PyTorch.',
long_description = open("README.md").read(),
long_description=open("README.md").read(),
classifiers=[
'Intended Audience :: Science/Research',
'Development Status :: 3 - Alpha',
Expand All @@ -97,7 +97,8 @@
author='Allen Institute for Artificial Intelligence',
author_email='allennlp@allenai.org',
license='Apache',
packages=find_packages(),
packages=find_packages(exclude=["*.tests", "*.tests.*",
"tests.*", "tests"]),
install_requires=[
'torch==0.3.1',
'pyhocon==0.3.35',
Expand Down

0 comments on commit 68483cd

Please sign in to comment.