File: setup.py

package info (click to toggle)
libuninameslist 20200413-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,136 kB
  • sloc: ansic: 99,746; python: 140; makefile: 112; sh: 4
file content (25 lines) | stat: -rw-r--r-- 723 bytes parent folder | download
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
#!/usr/bin/env python

from setuptools import setup
import sys

setup(
    name='uninameslist',
    version='0.2',
    author='Shriramana Sharma',
    author_email='samjnaa@gmail.com',
    license='BSD-3',
    description='Python wrapper for LibUniNamesList',
    long_description='Provide access to Unicode character names, annotations and block data',
    keywords='unicode name annotation block',
    classifiers=[
	'Environment :: Console',
	'Intended Audience :: Developers',
	'License :: OSI Approved :: BSD License',
	'Natural Language :: English',
	'Topic :: Text Processing :: Fonts',
	'Topic :: Utilities'],
    url='https://github.com/fontforge/libuninameslist/releases/',
    py_modules=['uninameslist']
    )