forked from textgain/grasp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (36 loc) · 1.46 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
from setuptools import setup
setup(
name = 'Grasp',
version = '2.0',
description = 'Simple NLP toolkit',
license = 'BSD',
author = 'Textgain',
author_email = 'info@textgain.com',
url = 'https://github.com/textgain/grasp',
scripts = [],
packages = [],
package_data = {
'' : ['*.csv', '*.json', '*.js', '*.md'],
'kb' : ['*.csv', '*.json'],
'lm' : ['*.csv', '*.json']},
extras_require = {
'svd' : 'numpy',
'fsel' : 'scipy'},
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Natural Language :: Dutch',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: JavaScript',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Text Processing :: Linguistic',
'Topic :: Text Processing :: Markup :: HTML'],
)