Skip to content

Commit

Permalink
fix install deps (#105)
Browse files Browse the repository at this point in the history
* fix install deps

* add sandbox
  • Loading branch information
smaakage85 committed Jan 7, 2021
1 parent df17dc3 commit aa061e5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions sandbox.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from danlp.datasets import DDT
import os
from pathlib import Path
cache_dir = os.path.join(str(Path.home()), '.nerda')
ner = DDT(cache_dir = cache_dir)
test = ner.load_as_simple_ner(True)
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=['tqdm', 'pyconll', 'tweepy'],
install_requires=[
'conllu',
'pandas'
'pyconll',
'tqdm',
'tweepy'
],
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
Expand Down

0 comments on commit aa061e5

Please sign in to comment.