|
Revision 661, 0.7 kB
(checked in by tal, 10 months ago)
|
- new scripts that wrap the various parts of the package.
- setup.py |
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
import sys |
|---|
| 4 |
from distutils.core import setup |
|---|
| 5 |
|
|---|
| 6 |
try: |
|---|
| 7 |
import fontTools |
|---|
| 8 |
except: |
|---|
| 9 |
print "*** Warning: woffTools requires FontTools, see:" |
|---|
| 10 |
print " fonttools.sf.net" |
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
setup( |
|---|
| 14 |
name="woffTools", |
|---|
| 15 |
version="0.1beta", |
|---|
| 16 |
description="A set of tools for working with WOFF files.", |
|---|
| 17 |
author="Tal Leming", |
|---|
| 18 |
author_email="tal@typesupply.com", |
|---|
| 19 |
url="http://code.typesupply.com", |
|---|
| 20 |
license="MIT", |
|---|
| 21 |
packages=[ |
|---|
| 22 |
"", |
|---|
| 23 |
"woffTools", |
|---|
| 24 |
"woffTools.tools", |
|---|
| 25 |
"woffTools.test" |
|---|
| 26 |
], |
|---|
| 27 |
package_dir={"":"Lib"}, |
|---|
| 28 |
scripts=[ |
|---|
| 29 |
"woff-all", |
|---|
| 30 |
"woff-validate", |
|---|
| 31 |
"woff-info", |
|---|
| 32 |
"woff-proof", |
|---|
| 33 |
"woff-css", |
|---|
| 34 |
] |
|---|
| 35 |
) |
|---|