-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 792 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup, find_packages
setup(
name='wiser',
version='0.0.1',
url='https://github.com/BatsResearch/wiser.git',
author='Esteban Safranchik, Shiying Luo, Stephen H. Bach, Daniel Ritter',
author_email='esteban_safranchik@brown.edu, shiying_luo@brown.edu, sbach@cs.brown.edu',
description='WISER (Weak and Indirect Supervision for Entity Recognition) is a ' +
'framework for programming sequence tagging neural networks for named ' +
'entity recognition',
packages=find_packages(),
package_data={
'': ['viewer/viewer.html', 'viewer/viewer.js'],
},
install_requires=['allennlp==0.8.4', 'labelmodels'],
dependency_links=[
'git+https://github.com/BatsResearch/labelmodels.git'
],
)