~ubuntu-branches/debian/stretch/uncertainties/stretch

« back to all changes in this revision

Viewing changes to setup.py

  • Committer: Bazaar Package Importer
  • Author(s): David Paleino
  • Date: 2011-03-25 23:17:11 UTC
  • mfrom: (1.1.9 upstream)
  • Revision ID: james.westby@ubuntu.com-20110325231711-s968ezvhh3skbd4t
Tags: 1.7.1-1
* New upstream release
* Patches refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
distutils.core.setup(
17
17
    name='uncertainties',
18
 
    version='1.7',  # Should generally correspond to uncertainties.__version__
 
18
    version='1.7.1',  # Should generally correspond to uncertainties.__version__
19
19
    author='Eric O. LEBIGOT (EOL)',
20
20
    author_email='eric.lebigot@normalesup.org',
21
21
    url='http://packages.python.org/uncertainties/',
30
30
                 ' quantities involved (aka "error propagation") ;'
31
31
                 ' fast calculation of derivatives'),
32
32
    
33
 
    long_description=u'''\
 
33
    long_description='''\
34
34
Overview
35
35
========
36
36
 
128
128
 
129
129
Main changes:
130
130
 
 
131
- 1.7.1: New semantics: ``ufloat('12.3(78)')`` now represents 12.3±7.8 \
 
132
         instead of 12.3±78.
131
133
- 1.7: ``ufloat()`` now raises ValueError instead of a generic Exception, \
132
134
       when given an incorrect \
133
135
       string representation, like ``float()`` does.