forked from savuir/blo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 739 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
setup(
name='blo',
version='0.6',
license='BSD-3-clause',
author='Sajjad Shahcheraghian',
author_email='shgninc@gmail.com',
packages=find_packages(),
entry_points={
'console_scripts': [
'blo = blo.blog:main',
],
},
install_requires=['jinja2', 'markdown', 'PyRSS2Gen'],
package_data={'': ['blo/default.json', 'blo/draft_templates.json',]},
include_package_data=True,
url='https://github.com/shgninc/blo', # use the URL to the github repo
download_url='https://github.com/savuir/blo/tarball/0.1', # I'll explain this in a second
keywords=['blogging', 'blog', 'static blog generator'], # arbitrary keywords
)