mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-05-27 10:44:33 +00:00
Update documentation with Python3 dependency information
This commit is contained in:
parent
0cb93f98dc
commit
22def21d6b
8
HACKING
8
HACKING
@ -5,7 +5,7 @@
|
|||||||
1. Instead of running "setup.py install" after every source modification, run
|
1. Instead of running "setup.py install" after every source modification, run
|
||||||
the following command:
|
the following command:
|
||||||
|
|
||||||
$ sudo python setup.py develop
|
$ sudo python3 setup.py develop
|
||||||
|
|
||||||
This will install the python package in a special development mode. Run it
|
This will install the python package in a special development mode. Run it
|
||||||
normally. Any updates to the code (and core pakcage data files) do not
|
normally. Any updates to the code (and core pakcage data files) do not
|
||||||
@ -38,7 +38,7 @@
|
|||||||
|
|
||||||
1. Run tests:
|
1. Run tests:
|
||||||
|
|
||||||
$ python setup.py test
|
$ python3 setup.py test
|
||||||
|
|
||||||
## Testing Inside a Virtual Machine
|
## Testing Inside a Virtual Machine
|
||||||
|
|
||||||
@ -102,12 +102,10 @@ infrastructure in place for it from the start. Use it like this:
|
|||||||
|
|
||||||
* *Modernizer* - HTML5 and CSS3 feature detection
|
* *Modernizer* - HTML5 and CSS3 feature detection
|
||||||
|
|
||||||
* *Python* - tested with version 2.7
|
* *Python3* - Requires minimum 3.3, tested with version 3.4.1
|
||||||
|
|
||||||
* *Twitter Bootstrap* - A responsive, mobile first front-end framework
|
* *Twitter Bootstrap* - A responsive, mobile first front-end framework
|
||||||
|
|
||||||
* *Withsqlite* - Python library that stores dictionaries in sqlite3
|
|
||||||
|
|
||||||
The documentation has the following dependencies:
|
The documentation has the following dependencies:
|
||||||
|
|
||||||
* *Markdown* - format and style docs
|
* *Markdown* - format and style docs
|
||||||
|
|||||||
2
INSTALL
2
INSTALL
@ -13,7 +13,7 @@
|
|||||||
Unzip the source into a directory. Change to the directory containing the
|
Unzip the source into a directory. Change to the directory containing the
|
||||||
program and run:
|
program and run:
|
||||||
|
|
||||||
$ sudo python setup.py install
|
$ sudo python3 setup.py install
|
||||||
|
|
||||||
3. Run Plinth:
|
3. Run Plinth:
|
||||||
|
|
||||||
|
|||||||
1
setup.py
1
setup.py
@ -84,6 +84,7 @@ setup(
|
|||||||
'Natural Language :: English',
|
'Natural Language :: English',
|
||||||
'Operating System :: POSIX :: Linux',
|
'Operating System :: POSIX :: Linux',
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Unix Shell',
|
'Programming Language :: Unix Shell',
|
||||||
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
|
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application',
|
||||||
'Topic :: System :: Systems Administration',
|
'Topic :: System :: Systems Administration',
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user