forked from rjrequina/Cebuano-Dictionary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
24 lines (22 loc) · 749 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
from distutils.core import setup
setup(
name = 'cebdict',
packages = ['cebdict'],
version = '2.1',
description = "A Cebuano Dictionary based on Wolff's Dictionary",
author = 'Arjemariel Requina',
author_email = 'rjrequina@gmail.com',
url = 'https://github.com/ajrequina/Cebuano-Dictionary',
download_url = 'https://github.com/ajrequina/Cebuano-Dictionary/archive/1.0.tar.gz',
keywords = ['pos-tag dictionary', 'cebuano-dictionary'],
classifiers = [],
data_files=[
('data', ['cebdict/data/cebposdict.txt']),
('data/function_words', [
'cebdict/data/function_words/CONJ.txt',
'cebdict/data/function_words/DET.txt',
'cebdict/data/function_words/PART.txt',
'cebdict/data/function_words/PRON.txt'
])
]
)