blob: 6b4a60d394ae9de9ce820fd28c879d72220cd017 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
###############################################################################
# Name: info.py #
# Purpose: Global project information #
# Author: Cody Precord <cprecord@editra.org> #
# Copyright: (c) 2008 Cody Precord <staff@editra.org> #
# License: wxWindows License #
###############################################################################
"""Editra Project information module"""
__author__ = "Cody Precord <cprecord@editra.org>"
__svnid__ = "$Id: info.py 73347 2013-01-05 19:58:31Z CJP $"
__revision__ = "$Revision: 73347 $"
#-----------------------------------------------------------------------------#
AUTHOR = 'Cody Precord'
VERSION = '0.7.20'
PROG_NAME = 'Editra'
HOME_PAGE = "http://editra.org"
I18N_PAGE = "https://translations.launchpad.net/editra/trunk/+pots/editra"
CONTACT_MAIL = "staff@editra.org"
|