-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (33 loc) · 972 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
#! /usr/bin/env python
from setuptools import setup, find_packages
if __name__ == "__main__":
setup(
name='Wosis',
version='0.1.1',
description='Python package that acts as an bridging interface between WoS Client, wos_parser, and Metaknowledge',
long_description=open('README.md').read(),
url='',
author='Takuya Iwanaga',
author_email='[email protected]',
license='(c) 2018 Takuya Iwanaga',
packages=find_packages(),
install_requires=[
'lxml',
'pyyaml',
'wos',
'matplotlib',
'seaborn',
'pandas',
'networkx',
'python-louvain',
'nltk',
'rake-nltk',
'fuzzywuzzy',
'scikit-learn',
'tqdm',
'metaknowledge>=3.3.2'
],
extras_require={
'levenshtein': ['python-levenshtein']
}
)