PageRenderTime 53ms CodeModel.GetById 27ms RepoModel.GetById 0ms app.codeStats 0ms

/setup.py

https://github.com/eged/django-blog-zinnia
Python | 37 lines | 29 code | 8 blank | 0 comment | 0 complexity | 901590304a0bfbd79ac9d31514383f90 MD5 | raw file
  1. import os
  2. from setuptools import setup, find_packages
  3. import zinnia
  4. setup(name='django-blog-zinnia',
  5. version=zinnia.__version__,
  6. description='A clear and powerfull weblog application powered with Django',
  7. long_description=open(os.path.join('README.rst')).read(),
  8. keywords='django, blog',
  9. author=zinnia.__author__,
  10. author_email=zinnia.__email__,
  11. url=zinnia.__url__,
  12. packages=find_packages(),
  13. classifiers=[
  14. 'Framework :: Django',
  15. 'Development Status :: 5 - Production/Stable',
  16. 'Environment :: Web Environment',
  17. 'Programming Language :: Python',
  18. 'Intended Audience :: Developers',
  19. 'Operating System :: OS Independent',
  20. 'License :: OSI Approved :: BSD License',
  21. 'Topic :: Software Development :: Libraries :: Python Modules',],
  22. license=zinnia.__license__,
  23. include_package_data=True,
  24. zip_safe=False,
  25. install_requires=['django-tagging',
  26. 'django-mptt',
  27. 'akismet',
  28. 'BeautifulSoup',
  29. ])