Skip to content

Commit fce248e

Browse files
committed
Added basic setup.py file including Pelican and Markdown dependencies
1 parent 556952e commit fce248e

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

setup.py

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
from distutils.core import setup
2+
3+
setup(
4+
name='SkyLines Blog',
5+
version='0.0.0',
6+
description='',
7+
author='',
8+
author_email='',
9+
packages=[],
10+
scripts=[],
11+
url='http://blog.skylines-project.org/',
12+
license='',
13+
install_requires=[
14+
"Pelican == 3.3",
15+
"Markdown == 2.3.1",
16+
],
17+
)

0 commit comments

Comments
 (0)