-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathsetup.py
51 lines (48 loc) · 1.36 KB
/
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
44
45
46
47
48
49
50
51
"""This file is used for pip install"""
from setuptools import setup, find_packages
from proj_info import SHORT_NAME, VERSION, ABOUT_URL, AUTHOR, LICENSE_TYPE, \
SHORT_DESCRIPTION, LONG_DESCRIPTION
setup(
name=SHORT_NAME,
version=VERSION,
url=ABOUT_URL,
license=LICENSE_TYPE,
author=AUTHOR,
description=SHORT_DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages('.'),
include_package_data=True,
zip_safe=False,
platforms='any',
install_requires=[
'flask',
'numpy',
'scikit-learn',
'scipy',
'pandas',
'gensim',
'beautifulsoup4',
'lxml',
'matplotlib',
'chardet',
'natsort',
'plotly'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Education :: Text Processing :: Utilities'
],
entry_points='''
[console_scripts]
lexos=lexos.application:run
'''
)