-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 756 Bytes
/
Copy pathsetup.py
File metadata and controls
31 lines (30 loc) · 756 Bytes
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
from setuptools import setup, find_packages
setup(
name = 'ligature_kerning',
packages = find_packages(),
version = '0.1.0',
license='MIT',
description = 'Nasteeq ligatures kerning for OpenType (TruType) Fonts',
author = 'Sayed Zeeshan Asghar',
author_email = 'sayedzeeshan@gmail.com',
url = 'https://github.com/sayedzeeshan/Kerning',
keywords = [
'nastaliq',
'kerning',
'auto-kerning',
'opentype',
'fonts'
],
install_requires=[
'numpy >= 1.0',
'matplotlib >= 1.0',
'opencv-python >= 4.5.2.0'
],
classifiers=[
'Development Status :: 3 - Beta',
'Intended Audience :: Users',
'Topic :: Fonts :: Kerning',
'License :: MIT License',
'Programming Language :: Python :: 3.6',
],
)