-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·62 lines (57 loc) · 1.79 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#!/usr/bin/env python
#
# Distutils setup script for the Natural Language Toolkit
#
# Copyright (C) 2001-2009 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
import nltk
setup(
#############################################
## Distribution Metadata
name = "nltk",
description = "Natural Language Toolkit",
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 Data
package_data = {'nltk': ['nltk.jar', 'test/*.doctest']},
#############################################
## Package List
packages = ['nltk',
'nltk.app',
'nltk.chat',
'nltk.chunk',
'nltk.ccg',
'nltk.classify',
'nltk.corpus',
'nltk.corpus.reader',
'nltk.cluster',
'nltk.draw',
'nltk.inference',
'nltk.metrics',
'nltk.misc',
'nltk.model',
'nltk.parse',
'nltk.sem',
'nltk.stem',
'nltk.tag',
'nltk.tokenize',
'nltk.toolbox',
'nltk.etree',
'yaml'
],
)