-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
39 lines (34 loc) · 1.03 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
36
37
38
39
from setuptools import find_packages, setup
from txt2hpo import __project__, __version__
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name=__project__,
packages=find_packages(),
version=__version__,
description='HPO concept recognition and phenotype extraction tool',
long_description=long_description,
long_description_content_type='text/markdown',
author='Vlad Gainullin <[email protected]>, Kevin Arvai <[email protected]>',
author_email='<[email protected]>',
license='',
include_package_data=True,
entry_points={
'console_scripts': [
f'{__project__} = {__project__}.__main__:main',
]
},
install_requires=[
'pandas',
'nltk==3.4.5',
'spacy==2.2.4',
'scispacy==0.2.4',
'negspacy==0.1.9',
'networkx',
'obonet',
'requests',
'gensim==3.8.1',
]
)