-
Notifications
You must be signed in to change notification settings - Fork 137
/
setup-eggs.py
executable file
·71 lines (67 loc) · 2.44 KB
/
setup-eggs.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#!/usr/bin/env python
#
# Distutils setup script for NLTK-Contrib
#
# Copyright (C) 2001-2011 NLTK Project
# Author: Steven Bird <[email protected]>
# Edward Loper <[email protected]>
# Ewan Klein <[email protected]>
# URL: <http://www.nltk.org/>
# For license information, see LICENSE.TXT
#from distutils.core import setup
from setuptools import setup
import nltk
setup(
#############################################
## Distribution Metadata
name = "nltk_contrib",
description = "NLTK-Contrib",
version = nltk.__version__,
url = nltk.__url__,
long_description = nltk.__longdescr__,
license = nltk.__license__,
keywords = nltk.__keywords__,
maintainer = nltk.__maintainer__,
maintainer_email = nltk.__maintainer_email__,
author = nltk.__author__,
author_email = nltk.__author__,
classifiers = nltk.__classifiers__,
# platforms = <platforms>,
#############################################
## Package List
packages = ['nltk_contrib',
'nltk_contrib.align',
'nltk_contrib.bioreader',
'nltk_contrib.classifier',
'nltk_contrib.classifier.exceptions',
'nltk_contrib.classifier_tests',
'nltk_contrib.coref',
'nltk_contrib.dependency',
'nltk_contrib.fst',
'nltk_contrib.fuf',
'nltk_contrib.hadoop',
'nltk_contrib.hadoop.hadooplib',
'nltk_contrib.lambek',
'nltk_contrib.lpath',
'nltk_contrib.lpath.lpath',
'nltk_contrib.lpath.at_lite',
'nltk_contrib.misc',
'nltk_contrib.mit',
'nltk_contrib.mit.six863',
'nltk_contrib.mit.six863.kimmo',
'nltk_contrib.mit.six863.parse',
'nltk_contrib.mit.six863.semantics',
'nltk_contrib.mit.six863.tagging',
'nltk_contrib.readability',
'nltk_contrib.rte',
'nltk_contrib.scripttranscriber',
'nltk_contrib.tag',
'nltk_contrib.tiger',
'nltk_contrib.tiger.indexer',
'nltk_contrib.tiger.query',
'nltk_contrib.tiger.utils',
'nltk_contrib.toolbox'
],
zip_safe=False, # since normal files will be present too?
install_requires=['setuptools'],
)