forked from taichino/jcconv
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
42 lines (38 loc) · 1.77 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
# -*- coding: utf-8 -*-
from __future__ import with_statement
from setuptools import setup
import codecs
import os
with codecs.open(os.path.join('README.rst'), encoding='utf-8') as f:
long_description = f.read().strip()
if __name__ == '__main__':
# build distribution package
setup(
packages = ('jcconv',),
name = 'jcconv',
version = '0.2.3',
py_modules = ['jcconv', 'jcconv_test'],
description = 'jcconv "JapaneseCharacterCONVerter", interconvert hiragana, katakana, halfwidth kana',
long_description = long_description,
author = 'Matsumoto Taichi',
author_email = '[email protected]',
url = 'http://github.com/taichino/jcconv',
keywords = 'japanese converter, hiragana, katakana, half-width kana',
license = 'MIT License',
classifiers = ["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Software Development :: Libraries :: Python Modules"],
tests_require = ['six'],
test_suite = "jcconv.jcconv_test",
install_requires = ['six'],
)