-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
35 lines (34 loc) · 1.14 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
from setuptools import setup, find_packages
setup(name='pyclinrec',
version='0.0.1',
description='A dictionary-based clinical entity-linking module',
url='http://github.com/twktheainur/pyclinrec',
author='Andon Tchechmedjiev',
author_email='[email protected]',
license='MIT',
packages=find_packages(include=['pyclinrec', 'pyclinrec.recognizer', 'pyclinrec.dictionary', 'pyclinrec.utils']),
keywords='clinical nlp concept recognizer entity linking',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.8',
'Topic :: Text Processing :: Linguistic',
],
install_requires=[
'regex==2020.10.15',
'torch',
'transformers',
'pandas',
'tqdm',
'nltk',
'requests',
'Metafone',
'SPARQLWrapper',
'redis',
'jellyfish',
'spacy>=3.0'
],
test_suite='nose.collector',
tests_require=['nose'],
include_package_data=True,
zip_safe=False)