forked from tokuhirom/jawiki-kana-kanji-dict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (28 loc) · 869 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
25
26
27
28
29
30
31
32
from setuptools import setup
import sys
sys.path.append('./jawiki')
sys.path.append('./tests')
name = 'jawiki-kana-kanji-dict'
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: Japanese",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
setup(
name='jawiki-kana-kanji-dict',
version="0.9.9",
description='Japanese wikipedia based dictionary.',
long_description="Japanese wikipedia based dictionary",
author='Tokuhiro Matsuno',
author_email='[email protected]',
license='MIT',
classifiers=classifiers,
url='https://github.tokuhirom/jawiki-kana-kanji-dict/',
packages=[],
package_data={},
scripts=['bin/makedict.py'],
test_suite='suite'
)