1 | PROJECT_NAME = 'qSEOptimizer' |
---|
2 | SKINS_DIR = 'skins' |
---|
3 | |
---|
4 | GLOBALS = globals() |
---|
5 | |
---|
6 | PROPERTY_SHEET = 'seo_properties' |
---|
7 | SHEET_TITLE = 'SEO Properties' |
---|
8 | |
---|
9 | STOP_WORDS = ['a', 'an', 'amp', 'and', 'are', 'arial', 'as', 'at', 'be', 'but', 'by', 'can', 'com', 'do', 'font', |
---|
10 | 'for', 'from', 'gif', 'had', 'has', 'have', 'he', 'helvetica', 'her', 'his', 'how', 'href', 'i', |
---|
11 | 'if', 'in', 'is', 'it', 'javascript', 'jpg', 'made', 'net', 'of', 'on', 'or', 'org', 'our', 'sans', |
---|
12 | 'see', 'serif', 'she', 'that', 'the', 'this', 'to', 'us', 'we', 'with', 'you', 'your'] |
---|
13 | |
---|
14 | FIELDS = ['title', 'description', 'keywords'] |
---|