1 Star 0 Fork 41

一夜见红 / Peanut

forked from zqqf16 / Peanut 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.92 KB
一键复制 编辑 原始数据 按行查看 历史
zqqf16 提交于 2015-11-10 15:02 . Add peanut init command
# -*- coding: utf-8 -*-
"""A static blog generator
"""
from __future__ import print_function
import os
from setuptools import setup
import peanut
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='peanut',
version=peanut.version,
license='MIT',
url = "https://github.com/zqqf16/peanut",
description='A static blog generator',
long_description=read('README.md'),
keywords = "static blog generator",
author='zqqf16',
author_email='zqqf16@gmail.com',
packages=['peanut'],
include_package_data = True,
package_data={
'peanut': [
'config.yml',
'themes/default/*.html',
'themes/default/*.xml',
'themes/default/assets/css/*.css',
'themes/default/assets/js/*.js',
],
},
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Topic :: Utilities',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: MIT License',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
install_requires=['Jinja2', 'Markdown', 'Pygments', 'PyYAML', 'six', 'docopt'],
py_modules=['peanut'],
entry_points={
'console_scripts': [
'peanut=peanut.cmd:main',
],
},
)
Python
1
https://gitee.com/linux0/peanut.git
git@gitee.com:linux0/peanut.git
linux0
peanut
Peanut
master

搜索帮助

53164aa7 5694891 3bd8fe86 5694891