- independent reader / writer object for designspace documents. - imports and exports easy to subclass objects for instance, source and axis data. - roundtrips - intended to be compatible with use in MutatorMath, Superpolatpor and varlib.
17 lines
468 B
Python
17 lines
468 B
Python
#!/usr/bin/env python
|
|
|
|
from setuptools import setup
|
|
|
|
setup(name = "DesignSpaceDocument",
|
|
version = "0.1",
|
|
description = "Python object to read, write and edit MutatorMath designspace data.",
|
|
author = "Erik van Blokland",
|
|
author_email = "erik@letterror.com",
|
|
url = "https://github.com/LettError/designSpaceDocument",
|
|
license = "MIT",
|
|
packages = [
|
|
"designSpaceDocument",
|
|
],
|
|
package_dir = {"":"Lib"},
|
|
)
|