-
Notifications
You must be signed in to change notification settings - Fork 0
/
__manifest__.py
31 lines (25 loc) · 889 Bytes
/
__manifest__.py
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
# -*- coding: utf-8 -*-
{
'name': "TurkishIDValidator",
'summary': """
Turkish ID(TCKN) verification and validation module""",
'description': """
A generic Turkish ID(TCKN) is consist of 11 digits, and it's unique to
corresponding person. By this module, you can have a chance to verify
and validate given number by various methods including offline
verification and online validation through a service provided by the
Directorate General of Civil Registration and Citizenship Affairs in
Turkey
""",
'author': "Metin AKIN",
'website': "http://www.metoinside.com",
'category': 'Uncategorized',
'version': '0.1',
# any module necessary for this one to work correctly
'depends': ['base'],
# always loaded
'data': [
'views/views.xml',
'views/templates.xml',
],
}