forked from robotools/defcon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (43 loc) · 1.1 KB
/
setup.py
File metadata and controls
50 lines (43 loc) · 1.1 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env python
import sys
from distutils.core import setup
try:
import fontTools
except:
print "*** Warning: defcon requires FontTools, see:"
print " fonttools.sf.net"
try:
import robofab
except:
print "*** Warning: defcon requires RoboFab, see:"
print " robofab.com"
if "sdist" in sys.argv:
import os
import subprocess
import shutil
docFolder = os.path.join(os.getcwd(), "documentation")
# remove existing
doctrees = os.path.join(docFolder, "build", "doctrees")
if os.path.exists(doctrees):
shutil.rmtree(doctrees)
# compile
p = subprocess.Popen(["make", "html"], cwd=docFolder)
p.wait()
# remove doctrees
shutil.rmtree(doctrees)
setup(name="defcon",
version="0.1",
description="A set of flexible objects for representing UFO data.",
author="Tal Leming",
author_email="tal@typesupply.com",
url="http://code.typesupply.com",
license="MIT",
packages=[
"defcon",
"defcon.objects",
"defcon.pens",
"defcon.test",
"defcon.tools"
],
package_dir={"":"Lib"}
)