-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
44 lines (41 loc) · 1.21 KB
/
setup.py
File metadata and controls
44 lines (41 loc) · 1.21 KB
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
"""This file is used for pip install"""
from setuptools import setup, find_packages
from proj_info import SHORT_NAME, VERSION, AUTHOR, LICENSE_TYPE, \
SHORT_DESCRIPTION, LONG_DESCRIPTION
setup(
name=SHORT_NAME,
version=VERSION,
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=[
'numpy',
'scikit-learn',
'scipy',
'pandas',
'gensim',
'beautifulsoup4',
'lxml',
'matplotlib',
'chardet',
'natsort'
],
classifiers=[
'Development Status :: 1 - Alpha',
'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'
]
)