-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 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 |
---|---|---|
@@ -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'], | ||
) |