File: setup.py

package info (click to toggle)
libuninameslist 20230916-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,400 kB
  • sloc: ansic: 105,159; python: 142; makefile: 127; sh: 4
file content (27 lines) | stat: -rw-r--r-- 1,093 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env python

from setuptools import setup
import sys

setup(
    name='uninameslist',
    version='0.2.0',
    author='Shriramana Sharma',
    author_email='samjnaa@gmail.com',
    license='BSD-3',
    description='Unicode character names, annotation descriptions, and block data. Wrapper for libuninameslist',
    long_description='Quickly fetch unicode character names, annotation descriptions, and block data information as described in unicode.org file NamesList.txt. Users will first need to install C library libuninameslist before using this wrapper utility.',
    keywords='unicode character font name definition annotation description block nameslist',
    classifiers=[
	'Environment :: Console',
	'Intended Audience :: Developers',
	'License :: OSI Approved :: BSD License',
	'Natural Language :: English',
	'Topic :: Software Development :: Documentation',
	'Topic :: Software Development :: Libraries',
	'Topic :: Text Processing :: Fonts',
	'Topic :: Utilities'],
    url='https://github.com/fontforge/libuninameslist/releases/',
    py_modules=['uninameslist']
    )