forked from rcamba/kanji_to_romaji
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
27 lines (25 loc) · 856 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
from distutils.core import setup
from os import path
from io import open
path_to_this_file = path.abspath(path.dirname(__file__))
try:
with open(path.join(path_to_this_file, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()
except IOError:
long_description = ""
setup(
name='Kanji_to_Romaji',
version='1.0.0',
packages=['kanji_to_romaji', 'kanji_to_romaji/models'],
package_data={'kanji_to_romaji': ['jp_mappings/*.json']},
url='https://github.com/rcamba/kanji_to_romaji',
license='Mozilla Public License Version 2.0',
author='Robert Camba',
author_email='[email protected]',
description='Try to translate Kanji to Romaji.',
extras_require={
'fasterjson': ['simplejson>=3.10.0'],
},
scripts=['scripts/ktr.py'],
long_description=long_description
)