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
|
import io
import os
from setuptools import setup
os.chdir(os.path.abspath(os.path.dirname(__file__)))
setup(name='unicode',
version='3.2',
scripts=['unicode', 'paracode'],
# entry_points={'console_scripts': [
# 'unicode = unicode:main',
# 'paracode = paracode:main']},
description="Display unicode character properties",
long_description="""
Display unicode character properties:
Enter regular expression, hexadecimal number or some characters as an
argument. unicode will try to guess what you want to look up.
Use four-digit hexadecimal number followed by two dots to display
given unicode block in a nice tabular format.
""",
author="Radovan Garabik",
author_email='radovan.garabik@kassiopeia.juls.savba.sk',
url='http://kassiopeia.juls.savba.sk/~garabik/software/unicode.html',
license='GNU GPL v3',
keywords=['unicode', 'character properties', 'encoding'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Text Editors :: Text Processing',
'Topic :: Utilities'])
|