-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathsetup.py
40 lines (38 loc) · 1008 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
35
36
37
38
39
40
from setuptools import setup, find_packages
__version__ = '0.3.0'
__pkg_name__ = 'textsift'
setup(
name = __pkg_name__,
version = __version__,
description = 'Text modelling framework',
author='Andrew Chisholm',
packages = find_packages(),
license = 'MIT',
url = 'https://github.com/wikilinks/sift',
scripts = [
'scripts/sift-notebook',
'scripts/download-wikipedia'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2.7',
'Topic :: Text Processing :: Linguistic'
],
install_requires = [
"ujson",
"numpy",
"pattern",
"gensim",
"msgpack-python",
"beautifulsoup4",
"spacy",
"warc",
"pycld2",
"scipy",
"scikit-learn"
],
test_suite = __pkg_name__ + '.test'
)