diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..7e66d15 --- /dev/null +++ b/setup.py @@ -0,0 +1,16 @@ +from distutils.core import setup + +setup( + name='django-sameas', + version='0.1.0', + author='Yordan Miladinov', + author_email='jordanMiladinov@gmail.com', + 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" + ], +)