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
commit 28: 87cc2284ce7f
parent 27: 40a88c0be047
branch: default
fixed path bug in setup.py
Gustavo Picon / tabo
9 months ago

Changed (Δ2 bytes):

raw changeset »

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

Up to file-list setup.py:

@@ -15,7 +15,7 @@ classifiers = [
15
15
]
16
16
17
17
root_dir = os.path.dirname(__file__)
18
long_desc = open(root_dir if root_dir else '.'+'/README').read()
18
long_desc = open((root_dir if root_dir else '.')+'/README').read()
19
19
20
20
setup(
21
21
    name='numconv',