-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
67 lines (66 loc) · 2.11 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/usr/bin/env python3
from distutils.core import setup
setup(
name='libfnl',
version='0.0.1',
license='GNU Affero GPL v3',
author='Florian Leitner',
author_email='[email protected]',
url='https://github.com/fnl/libfnl',
description='command-line tools for text mining',
long_description=open('README.rst').read(),
install_requires=[
'fn >= 0.2.13',
'html5lib >= 0.999',
'ngram >= 3.3.0',
'nltk >= 3.0.0b1',
'matplotlib >= 1.4.0',
#'psycopg2 >= 2.4',
'pytest >= 2.6.0',
'scikit-learn >= 0.12',
'sqlalchemy >= 0.8',
'Unidecode >= 0.04.16',
],
packages=[
'fnl',
'fnl.nlp',
'fnl.nlp.genia',
'fnl.stat',
'fnl.text',
'fnl.utils',
],
package_dir={'fnl': 'src/fnl'},
data_files=[
('var/fnl/dictionaries', ['mammalian_genes.csv', 'qualifier_order.txt']),
('var/fnl/models', ['medline_abstract_pst.bin']),
('var/nersuite/models', ['bc2gm.iob2.no_dic.m.xz', 'nlpba04.iob2.no_dic.m.xz']),
],
scripts=[
'scripts/fnlclassi.py',
'scripts/fnlcorpus.py',
'scripts/fnlcsvsimjoin.py',
'scripts/fnldgrep.py',
'scripts/fnldictag.py',
'scripts/fnlgpcounter.py',
'scripts/fnlkappa.py',
'scripts/fnlrelex.py',
'scripts/fnlsegment.py',
'scripts/fnlsegtrain.py',
'scripts/fnltok.py',
'scripts/genia_ner.sh',
'scripts/uniq_tokens_on_line.py',
],
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Environment :: Console',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: POSIX',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Information Analysis',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Medical Science Apps.',
'Topic :: Software Development :: Libraries',
'Topic :: Text Processing',
'Topic :: Text Processing :: Linguistic',
],
)