|
Revision 507, 466 bytes
(checked in by tal, 1 year ago)
|
setup file. |
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
from distutils.core import setup |
|---|
| 4 |
|
|---|
| 5 |
try: |
|---|
| 6 |
import fontTools |
|---|
| 7 |
except: |
|---|
| 8 |
print "*** Warning: defcon requires FontTools, see:" |
|---|
| 9 |
print " fonttools.sf.net" |
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
setup(name="compositor", |
|---|
| 14 |
version="0.2b", |
|---|
| 15 |
description="A simple OpenType GSUB and GPOS engine.", |
|---|
| 16 |
author="Tal Leming", |
|---|
| 17 |
author_email="tal@typesupply.com", |
|---|
| 18 |
url="http://code.typesupply.com", |
|---|
| 19 |
license="MIT", |
|---|
| 20 |
packages=["compositor"], |
|---|
| 21 |
package_dir={"":"Lib"} |
|---|
| 22 |
) |
|---|