-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
56 lines (46 loc) · 1.29 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
"""
Plog
====
A single-user blog using Flask, Mongoengine, and MongoDB.
Installation
------------
Install the latest version with ``pip``:
.. code-block:: bash
$ pip install plog
Or, for the adventurous:
.. code-block:: bash
$ pip install https://github.com/dcrosta/plog/tarball/master#egg=plog-dev
"""
from setuptools import setup, find_packages
setup(
name='plog',
version='0.3',
url='https://github.com/dcrosta/plog',
license='BSD',
author='Dan Crosta',
author_email='[email protected]',
description='Single-user blog using Flask, Mongoengine, and MongoDB',
long_description=__doc__,
packages=find_packages(),
zip_safe=False,
install_requires=[
line.strip() for line in open('requirements.txt')
if not line.strip().startswith('#')
],
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
],
entry_points={
'pygments.lexers': [
'keystone = plog.markup:KeystoneLexer',
],
'console_scripts': [
'plog-admin = plog.scripts:admin',
],
},
)