forked from saffsd/polyglot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 936 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
from setuptools import setup
import sys, os
version = '0.1'
setup(name='polyglot',
version=version,
description="polyglot is a tool for detecting multilingual documents and identifying the languages therein.",
long_description= open("README").read(),
classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords=['language detection', 'multilingual documents', 'text classification'],
author='Marco Lui',
author_email='saffsd@gmail.com',
url='https://github.com/saffsd/polyglot',
license='BSD',
packages=['polyglot'],
package_data={'polyglot':['models/*']},
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Extra requirements: -*-
'numpy',
],
entry_points= {
'console_scripts': [
'polyglot = polyglot.detect:main',
],
},
)