Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds package metadata via setup.py #2

Merged
merged 3 commits into from
Sep 3, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
],
)