-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (26 loc) · 827 Bytes
/
Copy pathsetup.py
File metadata and controls
27 lines (26 loc) · 827 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
import os
from setuptools import setup, find_packages
from src import NLPTextAugmentation as ba
def read(filename):
return open(os.path.join(os.path.dirname(__file__), filename)).read()
setup(
name='NLPTextAugmentation',
version=ba.__version__,
author=ba.__author__,
license='MIT',
packages=find_packages('src'),
package_dir={'': 'src'},
description='Text Augmentation',
long_description=read('README.md'),
install_requires=['pyvi',
'simalign',
'sentencepiece',
'transformers',
'sacremoses',
'nltk',
'numpy==1.22.0',
'pandas',
'gensim==4.3.0',
'openpyxl'
],
)