tabo / numconv

Python library to convert strings to numbers and numbers to strings. Docs: http://docs.tabo.pe/numconv/tip/

Clone this repository (size: 158.5 KB): HTTPS / SSH
$ hg clone http://code.tabo.pe/numconv

Changed (Δ5 bytes):

raw changeset »

docs/conf.py (2 lines added, 2 lines removed)

docs/index.rst (4 lines added, 4 lines removed)

numconv.py (1 lines added, 1 lines removed)

setup.py (1 lines added, 1 lines removed)

Up to file-list docs/conf.py:

@@ -47,9 +47,9 @@ copyright = u'2008-2010, Gustavo Picon'
47
47
# built documents.
48
48
#
49
49
# The short X.Y version.
50
version = '2.1a'
50
version = '2.1'
51
51
# The full version, including alpha/beta/rc tags.
52
release = '2.1a'
52
release = '2.1'
53
53
54
54
# The language for content autogenerated by Sphinx. Refer to documentation
55
55
# for a list of supported languages.

Up to file-list docs/index.rst:

@@ -2,16 +2,16 @@ numconv
2
2
=======
3
3
4
4
:synopsys: Convert strings to numbers and numbers to strings.
5
:copyright: 2008-2009 by Gustavo Picon
5
:copyright: 2008-2010 by Gustavo Picon
6
6
:license: Apache License 2.0
7
:version: 2.1a
7
:version: 2.1
8
8
:url: http://code.tabo.pe/numconv/
9
9
:documentation:
10
10
   `numconv-docs
11
   <http://docs.tabo.pe/numconv/2.0/>`_
11
   <http://docs.tabo.pe/numconv/2.1/>`_
12
12
:examples:
13
13
   `numconv-tests
14
   <http://code.tabo.pe/numconv/src/2.0/tests.py>`_
14
   <http://code.tabo.pe/numconv/src/2.1/tests.py>`_
15
15
16
16
:mod:`numconv` converts a string into a number and a number into a string
17
17
using default or user supplied encoding alphabets.

Up to file-list numconv.py:

@@ -6,7 +6,7 @@ http://code.tabo.pe/numconv/
6
6
"""
7
7
8
8
9
__version__ = '2.1.0a'
9
__version__ = '2.1.0'
10
10
11
11
# from april fool's rfc 1924
12
12
BASE85 = '0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz' \

Up to file-list setup.py:

3
3
import os
4
4
from distutils.core import setup
5
5
6
version = '2.1a'
6
version = '2.1'
7
7
8
8
classifiers = [
9
9
    "Development Status :: 5 - Production/Stable",