forked from kent37/guess-language
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (34 loc) · 1.05 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
38
39
40
#!/usr/bin/env python
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="guess-language",
version="1.0.1.dev0",
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",
"Programming Language :: Python :: 3",
"Topic :: Text Processing :: Linguistic",
],
python_requires=">=3.0",
)