-
Notifications
You must be signed in to change notification settings - Fork 14
/
setup.py
39 lines (35 loc) · 1.17 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 distutils.core import setup
from setuptools import find_packages
from lexmapr import __version__
classifiers = """
Development Status :: 4 - Beta
Environment :: Console
License :: OSI Approved :: GNU General Public License (GPL)
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python :: 3.6
Operating System :: POSIX :: Linux
""".strip().split('\n')
setup(name='lexmapr',
version=__version__,
description='A Lexicon and Rule-Based Tool for Translating Short Biomedical Specimen Descriptions into Semantic Web Ontology Terms',
author='Gurinder Gosal',
author_email='[email protected]',
url='https://github.com/lexmapr/LexMapr',
license='GPL-3.0',
classifiers=classifiers,
install_requires=[
'nltk==3.8.1',
'wikipedia==1.4.0',
'inflection==0.3.1',
'python-dateutil==2.7.3',
'rdflib==6.3.2',
],
python_requires='==3.11.*',
test_suite='nose.collector',
tests_require=['nose'],
packages=find_packages(),
include_package_data=True,
scripts=['bin/lexmapr']
)