Skip to content

Commit

Permalink
Adds package metadata via setup.py
Browse files Browse the repository at this point in the history
I based this on an example at http://guide.python-distribute.org/creation.html with your GitHub project/user info. I went out on a limb and said it requires Django 1.4 based on your claim that it works on 1.5 and likely earlier.

This file seems to be all that's necessary to `pip install` via a repo URL and should make submission to PyPI (ydm#1) much easier for even simpler re-use of this code.
  • Loading branch information
natevw committed Sep 2, 2014
1 parent ccdf673 commit b68077d
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
from distutils.core import setup

setup(
name='django-sameas',
version='0.1.0',
author='Yordan Miladinov',
author_email='[email protected]',
packages=['sameas'],
url='https://github.com/ydm/django-sameas',
license='LICENSE',
description='Django application that provides you with an easy-to-use template tag that replicates a block.',
long_description=open('README.md').read(),
install_requires=[
"Django >= 1.4"
],
)

0 comments on commit b68077d

Please sign in to comment.