Skip to content

Commit

Permalink
setup file.
Browse files Browse the repository at this point in the history
  • Loading branch information
tal committed Feb 27, 2009
1 parent afae874 commit 5e675d3
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Lib/fontMath/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@
These objects perform math similar to the RoboFab RGlyph object math.
The biggest difference is that this is significantly faster. This also
supports math on kerning and info objects.
"""
"""

version = "0.2"
2 changes: 1 addition & 1 deletion License.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License

Copyright (c) 2005-2007 Tal Leming
Copyright (c) 2005-2009 Type Supply LLC

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
include License.txt
21 changes: 21 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/usr/bin/env python

from distutils.core import setup

try:
import robofab
except:
print "*** Warning: defcon requires RoboFab, see:"
print " robofab.com"


setup(name="fontMath",
version="0.2",
description="A set of objects for performing math operations on font data.",
author="Tal Leming",
author_email="tal@typesupply.com",
url="http://code.typesupply.com",
license="MIT",
packages=["fontMath"],
package_dir={"":"Lib"}
)

0 comments on commit 5e675d3

Please sign in to comment.