forked from ljcooke/pilcrow
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (20 loc) · 700 Bytes
/
setup.py
File metadata and controls
25 lines (20 loc) · 700 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import os
from setuptools import setup
README_PATH = os.path.join(os.path.abspath(os.path.dirname(__file__)), 'README')
description = 'A small static site generator that uses Jinja templates.'
if os.path.exists(README_PATH):
long_description = open(README_PATH).read()
else:
long_description = description
setup(
name='jilcrow',
version='0.1.0',
install_requires=['BeautifulSoup', 'python-dateutil', 'Jinja2', 'Markdown',
'PyRSS2Gen', 'PyYAML'],
description=description,
long_description=long_description,
author='Liam Cooke, Steve Losh',
url='http://bitbucket.org/sjl/jilcrow/',
packages=['jilcrow'],
scripts=['bin/jilcrow'],
)