Skip to content

Commit

Permalink
Add setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
fgallaire committed Sep 5, 2016
1 parent 31e59ba commit e00075b
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
from setuptools import setup
from cjkwrap import __version__ as version

setup(name='CJKwrap',
version=version,
description='CJKwrap is a library for wrapping and filling CJK text. Fix Python issue24665',
author='Florent Gallaire',
author_email='[email protected]',
url='https://fgallaire.github.io/cjkwrap',
license='GNU LGPLv3+',
keywords='cjk wrap',
classifiers=[
"Development Status :: 6 - Mature",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
"Topic :: Text Processing",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
],
py_modules=['cjkwrap'],
)

0 comments on commit e00075b

Please sign in to comment.