mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-28 09:22:38 +02:00
parent
c7815e4878
commit
75104d9c19
7 changed files with 8 additions and 7 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -1,7 +1,4 @@
|
|||
budget/budget.db
|
||||
budget.db
|
||||
budget/memory
|
||||
budget/settings.py
|
||||
ihatemoney.cfg
|
||||
*.pyc
|
||||
*.egg-info
|
||||
dist
|
||||
|
@ -9,3 +6,4 @@ dist
|
|||
docs/_build/
|
||||
.tox
|
||||
dist
|
||||
.cache/
|
||||
|
|
|
@ -6,4 +6,5 @@ env:
|
|||
- TOXENV=py27
|
||||
- TOXENV=py34
|
||||
- TOXENV=py35
|
||||
- TOXENV=py36
|
||||
- TOXENV=docs
|
||||
|
|
|
@ -19,5 +19,5 @@ so.
|
|||
Requirements
|
||||
============
|
||||
|
||||
* **Python**: 2.7, 3.4, 3.5.
|
||||
* **Python**: 2.7, 3.4, 3.5, 3.6.
|
||||
* **Backends**: MySQL, PostgreSQL, SQLite, Memory.
|
||||
|
|
|
@ -11,7 +11,7 @@ Requirements
|
|||
|
||||
«Ihatemoney» depends on:
|
||||
|
||||
* **Python**: either 2.7, 3.4, 3.5 will work.
|
||||
* **Python**: either 2.7, 3.4, 3.5, 3.6 will work.
|
||||
* **A Backend**: to choose among MySQL, PostgreSQL, SQLite or Memory.
|
||||
|
||||
We recommend to use `pip <https://pypi.python.org/pypi/pip/>`_ and
|
||||
|
|
|
@ -3,6 +3,7 @@ flask-wtf>=0.14
|
|||
flask-sqlalchemy>=2.2,<3.0
|
||||
flask-mail>=0.8
|
||||
Flask-Migrate>=1.8.0
|
||||
Flask-script
|
||||
flask-babel
|
||||
flask-rest
|
||||
jinja2>=2.6
|
||||
|
|
1
setup.py
1
setup.py
|
@ -22,6 +22,7 @@ REQUIREMENTS = [
|
|||
'flask-sqlalchemy',
|
||||
'flask-mail>=0.8',
|
||||
'Flask-Migrate>=1.8.0',
|
||||
'Flask-script',
|
||||
'flask-babel',
|
||||
'flask-rest',
|
||||
'jinja2>=2.6',
|
||||
|
|
2
tox.ini
2
tox.ini
|
@ -1,5 +1,5 @@
|
|||
[tox]
|
||||
envlist = py35,py34,py27,docs,lint
|
||||
envlist = py36,py35,py34,py27,docs,lint
|
||||
skip_missing_interpreters = True
|
||||
|
||||
[testenv]
|
||||
|
|
Loading…
Reference in a new issue