-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
30 lines (27 loc) · 971 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
#!/usr/bin/env python
import os
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='guess-language',
version = '0.2',
description = 'Guess the natural language of a text',
license = 'LGPL',
platforms = ['any'],
author = 'Kent Johnson',
author_email = '[email protected]',
url = 'http://code.google.com/p/guess-language',
packages = ['guess_language'],
package_data = {'guess_language': ['trigrams/*', 'Blocks.txt', ]},
long_description = read('README'),
classifiers = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Text Processing :: Linguistic',
],
)