This repository has been archived by the owner on Jul 22, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 54
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Hiroshi Miura <[email protected]>
- Loading branch information
Showing
6 changed files
with
14 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
*.pyc | ||
*~ | ||
*.bak | ||
dist | ||
pykakasi.egg-info |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
include *.md | ||
include GPL-3 | ||
recursive-include data *.txt *.utf8 | ||
recursive-include pykakasi *.pickle *.db | ||
recursive-include tests *.py |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,16 +57,14 @@ def run(self): | |
|
||
setup(name='pykakasi', | ||
version='0.01', | ||
description='', | ||
url='http://launchpad.net/miurahr/+junk/pykakasi', | ||
description='Python implementation of kakasi - kana kanji simple inversion library', | ||
url='http://github.com/miurahr/pykakasi', | ||
license='GPLv3', | ||
long_description="", | ||
author='Hioshi Miura', | ||
author_email='[email protected]', | ||
|
||
packages = [ 'pykakasi' ], | ||
|
||
provides = [ 'pykakasi' ], | ||
|
||
include_package_data = True, | ||
cmdclass = { 'test': TestCommand, 'genkanwa':GenKanwa } | ||
) |