-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
43 lines (36 loc) · 959 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
37
38
39
40
41
42
43
import os
from shutil import rmtree
from setuptools import find_packages, setup, Command
# Package meta-data.
NAME = 'ovnlp'
DESCRIPTION = 'Openvalue toolkit to use word vectors'
URL = 'https://github.com/Fanchouille/ovnlp'
EMAIL = '[email protected]'
AUTHOR = 'Francois Valadier'
VERSION = "0.0.4"
# What packages are required for this module to be executed?
REQUIRED = [
"tqdm>=4.23.4",
"gensim>=3.4.0",
"pandas>=0.21.1",
"nltk>=3.2.4",
"numpy>=1.13.3",
"requests>=2.18.4",
"pathlib>=1.0.1",
"scikit_learn>=0.19.1",
"scipy>=1.0.0"
]
# print(find_packages(exclude=('tests', 'fasttext/weights')))
here = os.path.abspath(os.path.dirname(__file__))
setup(
name=NAME,
version=VERSION,
description=DESCRIPTION,
author=AUTHOR,
author_email=EMAIL,
url=URL,
packages=find_packages(exclude=('tests',)),
install_requires=REQUIRED,
include_package_data=True,
license='MIT',
)