-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathpelicanconf.py
106 lines (81 loc) · 3.35 KB
/
pelicanconf.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
from __future__ import unicode_literals
IGNORE_FILES = ['.ipynb_checkpoints'] # added Aug 2021 to address this issue: https://github.com/danielfrg/pelican-jupyter/issues/58
#AUTHOR = 'Chad Gray'
SITENAME = 'The Alpha Scientist'
SITEURL = 'https://alphascientist.com'
PATH = 'content'
TIMEZONE = 'America/Los_Angeles'
DEFAULT_LANG = 'en'
LOCALE = ('usa', #'jpn', # On Windows
'en_US', # 'ja_JP' # On Unix/Linux
)
# Feed generation is usually not desired when developing
FEED_ATOM = 'feeds/atom.xml'
FEED_RSS = 'feeds/rss.xml'
# Blogroll
''' Consider value of adding to this:
-> Alt data vendors of interest
-> Eagle Alpha etc... influencers (comes up in their searches)
-> Especially some crypto sources, blogs etc...
'''
LINKS = (('Quantocracy', 'http://quantocracy.com/'),
('Quant-at-Risk', 'https://quantatrisk.com/'),
('Robot Wealth', 'https://robotwealth.com/blog/'),
('QuantStart', 'https://www.quantstart.com/articles'),
('Simon Ouellette', 'http://www.simonouellette.com/'),
('Marcos Lopez de Prado', 'http://www.quantresearch.info/'),
('Financial Hacker', 'http://www.financial-hacker.com'),
('Knoema', 'https://knoema.com/data/categories'),
('AlternativeData.org', 'https://alternativedata.org'),
('Eagle Alpha', 'http://www.eaglealpha.com'),
('Neudata', 'https://www.neudata.co/'),
('Cloudquant', 'http://www.cloudquant.com'),
('Quiver Quant', 'http://www.quiverquant.com'),
('Real Vision', 'https://www.realvision.com/'),
('Cryptoquant', 'http://www.cloudquant.com'),
('Glassnode', 'http://www.cloudquant.com'),
('Diffbot', 'http://www.diffbot.com'),
('TheGraph', 'http://www.thegraph.com'),
('Mnemonic', 'https://www.mnemonichq.com/'),
('Yewno', 'http://www.yewno.com'),
('Yipit', 'https://www.yipitdata.com/'),
)
# Social widget
SOCIAL = (('Linkedin', 'https://www.linkedin.com/in/chadgraycfa/'),
('Twitter', 'https://twitter.com/data2alpha'),)
#SOCIAL_IMAGE = 'content/images/logo.jpg'
SOCIAL_IMAGE = 'images/logo.jpg'
DEFAULT_PAGINATION = False
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True
OUTPUT_PATH = 'docs/'
MARKUP = ('md', 'ipynb')
PLUGIN_PATHS = ['./plugins']
PLUGINS = ['ipynb.markup']
STATIC_PATHS = ['images']
THEME = 'themes/octopress'
SITEIMAGE = '/images/profile.jpg width=400 height=250'
SITESUBTITLE = 'Discovering alpha in the stock market using data science'
HIDE_AUTHORS = True
DISQUS_SITENAME = 'alphascientist-com'
DISPLAY_PAGES_ON_MENU = True
PAGE_PATHS = ['pages']
DISPLAY_CATEGORIES_ON_MENU = False
MENUITEMS = (
('Blogs', '/index.html'),
# ('Authors', '/authors.html'),
# ('Consulting', '/pages/consulting.html'),
)
FAVICON_FILENAME = 'images/favicon.png'
FACEBOOK_LIKE = True
TWITTER_USER = 'data2alpha'
TWITTER_WIDGET_ID = ('data2alpha')
TWITTER_TWEET_BUTTON = True # show twitter tweet button
TWITTER_FOLLOW_BUTTON = True # show twitter follow button
#TWITTER_TWEET_COUNT: 3 number of latest tweets to show
#TWITTER_SHOW_REPLIES: 'false' whether to list replies among latest tweets
#TWITTER_SHOW_FOLLOWER_COUNT: 'true' show number of followers
#GOOGLE_ANALYTICS = "UA-121434821-1"
#GOOGLE_UNIVERSAL_ANALYTICS = "UA-121434821-1"