forked from typesupply/woffTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (31 loc) · 697 Bytes
/
setup.py
File metadata and controls
35 lines (31 loc) · 697 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
32
33
34
35
#!/usr/bin/env python
import sys
from distutils.core import setup
try:
import fontTools
except:
print "*** Warning: woffTools requires FontTools, see:"
print " fonttools.sf.net"
setup(
name="woffTools",
version="0.1beta",
description="A set of tools for working with WOFF files.",
author="Tal Leming",
author_email="tal@typesupply.com",
url="http://code.typesupply.com",
license="MIT",
packages=[
"",
"woffTools",
"woffTools.tools",
"woffTools.test"
],
package_dir={"":"Lib"},
scripts=[
"woff-all",
"woff-validate",
"woff-info",
"woff-proof",
"woff-css",
]
)