From 9acdf3808339328794acad457614ae02712b5cc5 Mon Sep 17 00:00:00 2001 From: Graham Bell Date: Sat, 20 Aug 2016 14:10:06 -1000 Subject: [PATCH] setup: Add setup script --- setup.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..0da577b --- /dev/null +++ b/setup.py @@ -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='graham.s.bell@gmail.com', + 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', + ], +)