-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
17 lines (15 loc) · 824 Bytes
/
setup.py
File metadata and controls
17 lines (15 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python
from distutils.core import setup
setup(name="VaLID",
version="1.0.8",
description="A language identification system based on prediction by partial matching (PPM) compression",
long_description="VaLID models are essentially character n-gram models with a particular choice of back-off and periodic scaling of counts to prune very rare values.",
author="Paul McNamee",
author_email="paul.mcnamee@jhuapl.edu",
url="http://hltcoe.jhu.edu",
maintainer="Tom Lippincott",
maintainer_email="tom@cs.jhu.edu",
packages=["valid"],
scripts=["scripts/concrete_annotator_server.py", "scripts/concrete_annotator_client.py", "scripts/convert_invalid_to_valid.py", "scripts/valid_example.py"],
install_requires=["iso-639", "numpy", "sklearn"],
)