-
Notifications
You must be signed in to change notification settings - Fork 10
/
INSTALL
85 lines (55 loc) · 1.72 KB
/
INSTALL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#######
Install
#######
`django-anysign` is open-source software, published under BSD license.
See :doc:`/about/license` for details.
.. note::
If you want to install a development environment, you should go to
:doc:`/contributing` documentation.
************
Requirements
************
`django-anysign` has been tested against `Python`_ 2.7, 3.5, 3.6 and 3.7. Other
versions may work, but they are not part of the test suite at the moment.
Installing `django-anysign` will automatically trigger the installation of the
following requirements:
.. literalinclude:: /../setup.py
:language: python
:start-after: BEGIN requirements
:end-before: END requirements
************
As a library
************
In most cases, you will use `django-anysign` as a dependency of another
project. In such a case, you should add ``django-anysign`` in your main
project's requirements. Typically in :file:`setup.py`:
.. code:: python
from setuptools import setup
setup(
install_requires=[
'django-anysign',
#...
]
# ...
)
Then when you install your main project with your favorite package manager
(like `pip`_), `django-anysign` and its recursive dependencies will
automatically be installed.
**********
Standalone
**********
You can install `django-anysign` with your favorite Python package manager.
As an example with `pip`_:
.. code:: sh
pip install django-anysign
*****
Check
*****
Check `django-anysign` has been installed:
.. code:: sh
python -c "import django_anysign;print(django_anysign.__version__)"
You should get installed `django_anysign`'s version.
.. rubric:: References
.. target-notes::
.. _`Python`: https://www.python.org/
.. _`pip`: https://pypi.org/project/pip/