Changeset - 3f66787d69d9
[Not reviewed]
0 2 0
Branko Majic (branko) - 10 years ago 2014-01-22 22:27:52
branko@majic.rs
DJPYD-2: Added Django as part of installation requirements.
2 files changed with 6 insertions and 4 deletions:
0 comments (0 inline, 0 general)
docs/installation.rst
Show inline comments
 
@@ -8,9 +8,11 @@ Django Pydenticon can be installed through one of the following methods:
 
Requirements
 
------------
 

	
 
The main external requirement for Django Pydenticon is the `Pydenticon
 
<https://github.com/azaghal/pydenticon>`_ library, which is used for generating
 
the identicons.
 
Django Pydenticon depends on the following Python packages:
 

	
 
* `Django https://www.djangoproject.com/`_ web framework.
 
* `Pydenticon <https://github.com/azaghal/pydenticon>`_ library, which is used for generating
 
  the identicons.
 

	
 
Using pip
 
---------
setup.py
Show inline comments
 
@@ -2,7 +2,7 @@ import os
 
from setuptools import setup, find_packages
 

	
 
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
 
INSTALL_REQUIREMENTS = ["pydenticon"]
 
INSTALL_REQUIREMENTS = ["pydenticon", "django"]
 
TEST_REQUIREMENTS = []
 

	
 
# allow setup.py to be run from any path
0 comments (0 inline, 0 general)