diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..036452f0c3bb19e7f2a422d19c102cfe1d09d22b --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +#!/usr/bin/env python +# -*- coding: latin-1 -*- + +from distutils.core import setup,Extension +import glob +import os +import os.path + +setup(name="pymbolic", + version="0.10", + description="A package for symbolic computation", + author=u"Andreas Klöckner", + author_email="inform@tiker.net", + license = "BSD, like Python itself", + url="http://news.tiker.net/software/pymbolic", + packages=["fempy"], + package_dir={"fempy": "src"} + )