https://github.com/lmfit/lmfit-py
Raw File
Tip revision: 2bd40c436c4d61ed35398e674158d011359e99b0 authored by Matt Newville on 24 April 2012, 12:07:18 UTC
use os.path.join() in conf.py, add acknowledgements
Tip revision: 2bd40c4
setup.py
#!/usr/bin/env python
from distutils.core import setup
import os
import sys
import lib as lmfit

import numpy
import scipy

setup(name = 'lmfit',
      version = lmfit.__version__,
      author = 'Matthew Newville',
      author_email = 'newville@cars.uchicago.edu',
      url         = 'http://cars9.uchicago.edu/software/python/lmfit/',
      license = 'BSD',
      description = "Least-Squares Minimization with Constraints for Python",
      package_dir = {'lmfit': 'lib'},
      packages = ['lmfit'],
      )

back to top