Skip to content

Commit

Permalink
Merge pull request #2 from natevw/patch-1
Browse files Browse the repository at this point in the history
Adds package metadata via setup.py
  • Loading branch information
ydm committed Sep 3, 2014
2 parents ccdf673 + 6d362f2 commit 0d520cb
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from distutils.core import setup

setup(
name='django-sameas',
version='0.1.0',
author='Yordan Miladinov',
author_email='[email protected]',
packages=['sameas','sameas.templatetags'],
package_data={'sameas':['templates/*/*/*.html']},
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 0d520cb

Please sign in to comment.