-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
24 lines (22 loc) · 973 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
from setuptools import setup, find_packages
from SPVec import __version__
setup(name='SPVec',
version=__version__,
description='SPVec - an unsupervised representation learning method to learn vector representations of molecular substructures and protein sequences ',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: BSD 3-clause',
'Programming Language :: Python :: 3.6',
'Topic :: Bioinformatics :: Featurization',
],
url='https://github.com/dqwei-lab/SPVec',
author='Yufang Zhang, Xiangeng Wang, Yanyi Chu, et al.',
author_email='[email protected],wangxiangeng @sjtu.edu.cn, [email protected]',
license='BSD 3-clause',
packages=find_packages(),
install_requires=['numpy', 'gensim', 'tqdm', 'joblib', 'pandas', 'matplotlib', 'IPython', 'seaborn','jieba',],
zip_safe=False,
entry_points="""
[console_scripts]
"""
)