-
Notifications
You must be signed in to change notification settings - Fork 1
/
appinfo.py
61 lines (50 loc) · 2.36 KB
/
appinfo.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
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# Copyright 2009-2015 Joao Carlos Roseta Matos
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""Application basic information."""
# Python 3 compatibility
from __future__ import (absolute_import, division, print_function,
unicode_literals)
import datetime as dt
# import io # Python 3 compatibility
# from builtins import input # Python 3 compatibility
APP_NAME = 'tai'
APP_VERSION = '0.0.45'
APP_LICENSE = 'GNU General Public License v2 or later (GPLv2+)'
APP_AUTHOR = 'Joao Carlos Roseta Matos'
APP_EMAIL = '[email protected]'
APP_URL = 'https://github.com/jcrmatos/tai'
APP_KEYWORDS = 'technical analysis indicators'
# change classifiers to be correct for your application/module
CLASSIFIERS = ['Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved ::' + ' ' + APP_LICENSE,
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Topic :: Office/Business :: Financial :: Investment',
'Topic :: Software Development :: Libraries :: Python Modules']
COPYRIGHT = 'Copyright 2009-' + str(dt.date.today().year) + ' ' + APP_AUTHOR
APP_TYPE = 'module' # it can be application or module
README_FILE = 'README.rst'
REQUIREMENTS_FILE = 'requirements.txt'