-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
29 lines (27 loc) · 824 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
setup(name='POSIT',
version='0.3.0',
description='Part-of-Speech tagger for English and Source-code',
author='Profir-Petru Partachi',
author_email='p.partachi@cs.ucl.ac.uk',
packages=['tagger', 'preprocessor', 'baseline', 'StORMeD'],
package_dir={
'tagger': 'src/tagger',
'preprocessor': 'src/preprocessor',
'baseline': 'src/baseline',
'StORMeD': 'src/baseline/StORMeD',
},
package_data={'tagger': ['data/*.pkl']},
requires=[
'tensorflow',
'numpy',
'gensim',
'nltk',
'xmltodict',
'beautifulsoup4',
'html5lib',
'sklearn',
'tqdm',
]
)