Skip to content

Commit

Permalink
setup: Add setup script
Browse files Browse the repository at this point in the history
  • Loading branch information
grahambell committed Aug 21, 2016
1 parent 553ebca commit 9acdf38
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/usr/bin/env python

from distutils.core import setup

with open('README.rst') as f:
long_description = f.read()

setup(
name='jinja2_orderblocks',
version='0.0.0',
description='OrderBlocks Extension for Jinja2',
long_description=long_description,
author='Graham Bell',
author_email='[email protected]',
url='http://github.com/grahambell/jinja2-orderblocks',
package_dir={'': 'lib'},
packages=['jinja2_orderblocks'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)

0 comments on commit 9acdf38

Please sign in to comment.