]> git.phdru.name Git - m_lib.git/commitdiff
Version 2.0.1: add installation instruction in INSTALL.txt
authorOleg Broytman <phd@phdru.name>
Tue, 10 Dec 2013 20:50:46 +0000 (00:50 +0400)
committerOleg Broytman <phd@phdru.name>
Tue, 10 Dec 2013 20:50:46 +0000 (00:50 +0400)
INSTALL.txt [new file with mode: 0644]
README.txt
setup.py

diff --git a/INSTALL.txt b/INSTALL.txt
new file mode 100644 (file)
index 0000000..5d05b64
--- /dev/null
@@ -0,0 +1,15 @@
+m_lib requires Python2; preferred versions are 2.6 or 2.7.
+
+To install the library from sources system-wide run run the following
+command:
+
+   sudo python setup.py install -O2
+
+If you don't want to install it system-wide you can install it in your
+home directory; run run the following command:
+
+   python setup.py install -O2 --user
+
+Option '--user' only available in Python 2.6 or 2.7. The command
+installs m_lib into $HOME/.local/lib/python2.$VERSION/site-packages/
+where python finds it.
index 9e54dc87a8b5bfc35cd5eea81c6eeccfee1029f8..0a798dd4888f6b04c50597ccba7e939871a81446 100644 (file)
@@ -2,6 +2,8 @@ Broytman Library for Python, Copyright (C) 1996-2013 PhiloSoft Design
 Author: Oleg Broytman <phd@phdru.name>
 License: GPL
 
+For installation instruction see INSTALL.txt.
+
 Content of the library:
 
 defenc.py - get default encoding.
index 41fec96013f34c96e4a2583b2859069332096b12..5d22450ac61fd450f5bc2fa1a7499e6cfaf73616 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
 from distutils.core import setup
 
 setup(name = "m_lib",
-    version = "2.0",
+    version = "2.0.1",
     description = "Broytman Library for Python",
     long_description = "Broytman Library for Python, Copyright (C) 1996-2013 PhiloSoft Design",
     author = "Oleg Broytman",