]> git.phdru.name Git - m_lib.git/commitdiff
Prepare to publish at PyPI
authorOleg Broytman <phd@phdru.name>
Sun, 23 Apr 2017 20:45:09 +0000 (23:45 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 26 Apr 2017 17:02:44 +0000 (20:02 +0300)
INSTALL.txt
requirements.txt
setup.cfg

index 42fd7fa3ada6726ab545877c4effffe767daf37a..3b0a526da0942fb2dcf9dbac30c7ae3ea109a0a7 100644 (file)
@@ -7,11 +7,11 @@ Installation using pip:
 
     System-wide:
 
-    sudo pip install --find-links=http://phdru.name/Software/Python/ --no-index --install-option='-O2' m_lib
+    sudo pip install m_lib
 
     User mode:
 
-    pip install --find-links=http://phdru.name/Software/Python/ --no-index --install-option='-O2' --user m_lib
+    pip install --user m_lib
 
     For Python 2.6 the command is easy_install.
 
@@ -20,13 +20,13 @@ Installation from sources:
     To install the library from sources system-wide run run the following
     command:
 
-    sudo python setup.py install -O2
+    sudo python setup.py install
 
     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
+    python setup.py install --user
 
 Option '--user' installs m_lib into
-$HOME/.local/lib/python2.$VERSION/site-packages/ where python finds it
+$HOME/.local/lib/python$MAJOR.$MINOR/site-packages/ where python finds it
 automatically.
index a93f0116ba2115597fd5c44524b9835f470988b8..5d2aba7254165877b76bafa8e2078d74a5414cf5 100644 (file)
@@ -1,3 +1 @@
---trusted-host phdru.name
---find-links=http://phdru.name/Software/Python/
 --install-option=-O2
index 56a356622e99927ddcde13c83e3923576698e1a4..d4199d8208f2334f05e693d24743930abe92cf58 100644 (file)
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,4 @@
 [easy_install]
-find_links = http://phdru.name/Software/Python/
 optimize = 2
 
 [egg_info]