mirror of
https://github.com/OCA/bank-payment.git
synced 2025-02-02 10:37:31 +02:00
[ADD] Readme, gitignore and CI magic
This commit is contained in:
19
.coveragerc
Normal file
19
.coveragerc
Normal file
@@ -0,0 +1,19 @@
|
||||
# Config file .coveragerc
|
||||
|
||||
[report]
|
||||
omit =
|
||||
/usr/*
|
||||
*/bin/*
|
||||
*/lib/*
|
||||
*/odoo/*
|
||||
*/openerp/*
|
||||
*/tests/*
|
||||
*__init__.py
|
||||
|
||||
# Regexes for lines to exclude from consideration
|
||||
exclude_lines =
|
||||
# Have to re-enable the standard pragma
|
||||
pragma: no cover
|
||||
|
||||
# Don't complain about null context checking
|
||||
if context is None:
|
||||
56
.gitignore
vendored
Normal file
56
.gitignore
vendored
Normal file
@@ -0,0 +1,56 @@
|
||||
# Byte-compiled / optimized / DLL files
|
||||
__pycache__/
|
||||
*.py[cod]
|
||||
|
||||
# C extensions
|
||||
*.so
|
||||
|
||||
# Distribution / packaging
|
||||
.Python
|
||||
env/
|
||||
bin/
|
||||
build/
|
||||
develop-eggs/
|
||||
dist/
|
||||
eggs/
|
||||
lib/
|
||||
lib64/
|
||||
parts/
|
||||
sdist/
|
||||
var/
|
||||
*.egg-info/
|
||||
.installed.cfg
|
||||
*.egg
|
||||
|
||||
# Installer logs
|
||||
pip-log.txt
|
||||
pip-delete-this-directory.txt
|
||||
|
||||
# Unit test / coverage reports
|
||||
htmlcov/
|
||||
.tox/
|
||||
.coverage
|
||||
.cache
|
||||
nosetests.xml
|
||||
coverage.xml
|
||||
|
||||
# Translations
|
||||
*.mo
|
||||
|
||||
# Pycharm
|
||||
.idea
|
||||
|
||||
# Mr Developer
|
||||
.mr.developer.cfg
|
||||
.project
|
||||
.pydevproject
|
||||
|
||||
# Rope
|
||||
.ropeproject
|
||||
|
||||
# Sphinx documentation
|
||||
docs/_build/
|
||||
|
||||
# Backup files
|
||||
*~
|
||||
*.swp
|
||||
23
.travis.yml
Normal file
23
.travis.yml
Normal file
@@ -0,0 +1,23 @@
|
||||
language: python
|
||||
python:
|
||||
- "2.7"
|
||||
|
||||
virtualenv:
|
||||
system_site_packages: true
|
||||
|
||||
install:
|
||||
- git clone https://github.com/OCA/maintainer-quality-tools.git $HOME/maintainer-quality-tools
|
||||
- export PATH=$HOME/maintainer-quality-tools/travis:$PATH
|
||||
- $HOME/maintainer-quality-tools/travis/travis_install_nightly 7.0
|
||||
- pip install coveralls flake8 unidecode
|
||||
- git clone https://github.com/OCA/banking.git -b 7.0 $HOME/banking
|
||||
|
||||
services:
|
||||
- postgresql
|
||||
|
||||
script:
|
||||
- travis_run_flake8
|
||||
- travis_run_tests 7.0 $HOME/banking
|
||||
|
||||
after_success:
|
||||
coveralls
|
||||
27
README.md
Normal file
27
README.md
Normal file
@@ -0,0 +1,27 @@
|
||||
[](https://travis-ci.org/OCA/banking)
|
||||
[](https://coveralls.io/r/OCA/banking?branch=7.0)
|
||||
|
||||
Banking addons for Odoo
|
||||
=======================
|
||||
|
||||
This project focuses on in- and export of banking communication.
|
||||
|
||||
- account_banking_payment_export - Basic export functionality of payment orders
|
||||
|
||||
- account_banking_sepa_credit_transfer - Export of payment orders in SEPA format
|
||||
|
||||
- account_direct_debit - Debit order infrastructure analogous to Odoo native payment orders
|
||||
|
||||
- account_banking_sepa_direct_debit - Export of debit orders in SEPA format
|
||||
|
||||
- account_banking - Infrastructure for importing bank statements in various formats and custom (manual)
|
||||
reconciliation functionality. While advanced, this functionalit will be deprecated in Odoo 8.0 in favour
|
||||
of (an extension of) the new, native reconcilation functionality.
|
||||
|
||||
- account_banking_camt - Import of bank statements in the SEPA CAMT.053 format
|
||||
|
||||
A number of other modules are available for legacy format bank statement files.
|
||||
|
||||
Contact us
|
||||
----------
|
||||
Join the team on https://launchpad.net/~banking-addons-drivers so that you can subscribe to its mailing list
|
||||
Reference in New Issue
Block a user