setup.py 591 B

1234567891011121314151617181920
  1. #!/usr/bin/env python
  2. from setuptools import setup
  3. setup(
  4. name='djangomako',
  5. version='1.0.1',
  6. packages=['djangomako'],
  7. install_requires=['Mako==1.0.7'],
  8. classifiers=[
  9. 'Development Status :: 5 - Production/Stable',
  10. 'Intended Audience :: Developers',
  11. 'Operating System :: OS Independent',
  12. 'Programming Language :: Python',
  13. ],
  14. url='https://github.com/ahmedaljazzar/django-mako',
  15. license='MIT License',
  16. author='Ahmed Jazzar',
  17. author_email='me@ahmedjazzar.com',
  18. description='The simple, elegant Django Mako library',
  19. )