Skip to content

Commit

Permalink
Add the boiler plate code for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
kunxi committed Aug 23, 2010
1 parent f837863 commit 7cdd2fe
Show file tree
Hide file tree
Showing 4 changed files with 56 additions and 0 deletions.
1 change: 1 addition & 0 deletions LICENSE
@@ -0,0 +1 @@
BSD LICESE
Empty file removed README
Empty file.
4 changes: 4 additions & 0 deletions README.rst
@@ -0,0 +1,4 @@
bloggo
********

Yet another blog engine.
51 changes: 51 additions & 0 deletions setup.py
@@ -0,0 +1,51 @@
#!/usr/bin/env python

# Bootstrap installation of Distribute
import distribute_setup
distribute_setup.use_setuptools()

import os

from setuptools import setup


PROJECT = u'django-bloggo'
VERSION = '0.1'
URL = 'http://kunxi.org/'
AUTHOR = 'Kun Xi'
AUTHOR_EMAIL = 'kunxi@kunxi.org'
DESC = "A short description..."

def read_file(file_name):
file_path = os.path.join(
os.path.dirname(__file__),
file_name
)
return open(file_path).read()

setup(
name=PROJECT,
version=VERSION,
description=DESC,
long_description=read_file('README.rst'),
author=AUTHOR,
author_email=AUTHOR_EMAIL,
url=URL,
license=read_file('LICENSE'),
packages=['bloggo'],
include_package_data=True,
zip_safe=False,
install_requires=[
# -*- Requirements -*-
],
entry_points = {
# -*- Entry points -*-
},
classifiers=[
# see http://pypi.python.org/pypi?:action=list_classifiers
# -*- Classifiers -*-
'License :: OSI Approved',
'License :: OSI Approved :: BSD License',
"Programming Language :: Python",
],
)

0 comments on commit 7cdd2fe

Please sign in to comment.