From 9eea66c6f8182ff396141a7be11837b0a0473a36 Mon Sep 17 00:00:00 2001 From: John Wiegley Date: Sun, 29 Aug 2004 23:33:22 -0400 Subject: added some more python files --- setup_amounts.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 setup_amounts.py (limited to 'setup_amounts.py') diff --git a/setup_amounts.py b/setup_amounts.py new file mode 100755 index 00000000..663faa2e --- /dev/null +++ b/setup_amounts.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python + +from distutils.core import setup, Extension + +setup(name = "Amounts", + version = "2.0b", + description = "Amounts Library", + author = "John Wiegley", + author_email = "johnw@newartisans.com", + url = "http://www.newartisans.com/johnw/", + ext_modules = [ + Extension("amounts", ["pyamounts.cc"], + define_macros = [('PYTHON_MODULE', None)], + libraries = ["amounts_bpy", "boost_python", "gmp"])]) -- cgit v1.2.3