This repository has been archived by the owner on Jan 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
73 lines (61 loc) · 1.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# coding=utf8
"""
Rux
---
Micro & Fast static blog generator (markdown => html). 4 - Beta
Features
````````
* Static: Markdown => HTML
* Not tags, No categories, No feed generation, No ...
* Minimal & Simple configuration
* Ability to run in the background as a daemon
* Ability to save posts in PDF for offline reading
* Ability to build automatically once source updated
Installation
`````````````
.. code:: bash
$ mkdir MyBlog
$ cd MyBlog
$ virtualenv venv
New python executable in venv/bin/python
Installing setuptools............done.
Installing pip...............done.
$ . venv/bin/activate
$ pip install rux
Links
`````
* GitHub <https://github.com/hit9/rux>
"""
from setuptools import setup, Extension
setup(
name='rux',
version='0.6.6',
author='hit9',
author_email='[email protected]',
description='''Micro & Fast static blog generator based on markdown''',
license='BSD',
keywords='static blog generator markdown, html',
url='http://github.com/hit9/rux',
packages=['rux'],
include_package_data=True,
zip_safe=False,
entry_points={
'console_scripts': [
'rux=rux.cli:main'
]
},
install_requires=open("requirements.txt").read().splitlines(),
dependency_links=[
'https://github.com/hit9/toml.py/zipball/master#egg=toml.py-0.1.2',
],
ext_modules=[Extension('ruxlibparser', ['src/libparser.c'])],
long_description=__doc__,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Customer Service',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
]
)