Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
debreate / usr / share / debreate / globals / project.py
Size: Mime:
# -*- coding: utf-8 -*-

## \package globals.project

# MIT licensing; See: docs/LICENSE.txt


# System modules
import wx

# Local modules
from dbr.language import GT


ID_PROJ_L = wx.NewId()
ID_PROJ_T = wx.NewId()
ID_PROJ_M = wx.NewId()

## Default project filename extension
PROJECT_ext = u'dbp'
PROJECT_txt = u'txt'

## Filename suffixes that can be opened
supported_suffixes = (
    PROJECT_ext,
    PROJECT_txt,
)

PROJ_DEF_L = GT(u'Debreate project files')

project_wildcards = {
    ID_PROJ_L: (PROJ_DEF_L, (PROJECT_ext, PROJECT_txt)),
}