-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 795 Bytes
/
setup.py
File metadata and controls
27 lines (25 loc) · 795 Bytes
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
#!/usr/bin/env python3
from setuptools import setup
setup(name='textpresso_classifiers',
version='0.1',
description='Classify Textpresso documents into categories',
url='',
author='Valerio Arnaboldi',
author_email='valearna@caltech.edu',
license='MIT',
packages=['textpresso_classifiers'],
setup_requires=['numpy'],
install_requires=[
'sklearn',
'scipy',
'numpy',
'typing',
'namedlist',
'PyPDF2',
'nltk'
],
scripts=['bin/tp_doc_classifier.py', 'bin/classifiers_comparison.py', 'bin/convert_doc_to_txt.py',
'wormbase_tools/tp_classification_pipeline.sh'],
test_suite='nose.collector',
tests_require=['nose'],
zip_safe=False)