-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (27 loc) · 908 Bytes
/
setup.py
File metadata and controls
28 lines (27 loc) · 908 Bytes
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
from setuptools import setup
setup(
name = 'korean_romanizer',
packages = ['korean_romanizer'],
use_scm_version=True,
license='GNU GPLv3',
description = 'A Python library for Korean romanization',
author = 'Ilkyu Ju',
author_email = 'ju.ilkyu@gmail.com',
url = 'https://github.com/osori/korean-romanizer',
keywords = ['Korean', 'Romanization', 'Transliteration'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
entry_points={
'console_scripts': [
'kroman=korean_romanizer.cli:main',
],
},
)