forked from ali-mosavian/repipe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 726 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 726 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
28
29
from setuptools import setup, find_packages
setup(
name='re-pipe',
version='0.0.1',
description='A reproducible data/NLP pipeline',
url='https://github.com/stdexcept/repipe',
author='Ali Mosavian',
author_email='ali@octai.se',
python_requires='>=3.6',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=[
'gensim == 3.8.3',
'joblib == 0.14.0',
'Keras-Preprocessing == 1.1.0',
'nltk == 3.4.5',
'numpy == 1.17.3',
'pandas == 0.25.2',
'scikit-learn == 0.23.2',
'scipy == 1.4.1',
],
extras_require={
'test': [
'pyyaml==5.1.2',
'nose==1.3.7'
],
}
)