-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 996 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
30
31
32
33
34
35
36
from setuptools import setup
import os
def package_files(package, directory):
paths = []
for (path, directories, filenames) in os.walk(package+"\\"+directory):
for filename in filenames:
paths.append(os.path.join('..', directory, filename))
return paths
setup(
name='BEaSTagger',
version='1.2',
packages=['beast'],
install_requires=[
'torch>=1.8.1',
'spacy~=3.0.6',
'tqdm>=4.44.1',
'numpy>=1.21',
'pandas>=1.0.3',
'sklearn>=0.0',
'scikit-learn~=0.22.2.post1',
'setuptools>=49.2.1',
'requests~>2.31.0',
'stanza~=1.3.0'
],
package_data={'beast': package_files('beast', 'data\\default')},
include_package_data=True,
url='https://github.com/procesaur/BEaSTagger',
license='GPL',
author='Mihailo Škorić',
author_email='procesaur@gmail.com',
description='POS tagging tool based on Bidirectional, Expandable and Stacked architecture.'
)