-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsetup.py
40 lines (37 loc) · 1.59 KB
/
setup.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
from distutils.core import setup
setup(
name = 'blug',
version = '1.0.0rc1',
description = 'Static site generator for Markdown based blogs, with a built-in webserver',
author = 'Jeff Knupp',
author_email = '[email protected]',
url = 'http://www.github.com/jeffknupp/blug',
keywords = ['blog', 'markdown', 'static', 'website', 'generator'],
packages = ['blug', 'blug.test'],
scripts = ['blug/blug.py'],
requires = ['Jinja2 (>=2.6)', 'Markdown (>=2.2.0)', 'PyYAML (>=3.10)', 'Pygments(>=1.5)'],
license = 'MIT License',
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Text Processing :: Markup',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
long_description = '''\
Blug - The Opinionated Static Blog Generator
--------------------------------------------
Blug is *another* static blog generator for blog posts written in Markdown.
The current styling is directly taken from the Octopress default theme, though
this will change shortly. It includes a built-in
webserver for previewing posts.
Blug is on Github at http://www.github.com/jeffknupp/blug
'''
)