PageRenderTime 41ms CodeModel.GetById 17ms RepoModel.GetById 0ms app.codeStats 0ms

/setup.py

https://github.com/benjaoming/django-stopforumspam
Python | 36 lines | 31 code | 5 blank | 0 comment | 0 complexity | 1a53392962aad31f1327630e10230e01 MD5 | raw file
  1. from setuptools import find_packages
  2. from setuptools import setup
  3. from stopforumspam import __version__
  4. CLASSIFIERS = [
  5. 'Development Status :: 4 - Beta',
  6. 'Environment :: Web Environment',
  7. 'Framework :: Django',
  8. 'Intended Audience :: Developers',
  9. 'License :: OSI Approved :: BSD License',
  10. 'Operating System :: OS Independent',
  11. 'Programming Language :: Python',
  12. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  13. 'Topic :: Software Development',
  14. 'Topic :: Software Development :: Libraries :: Application Frameworks',
  15. ]
  16. packages = find_packages()
  17. setup(
  18. name='stopforumspam',
  19. description='Django middleware for blocking IPs listed in stopforumspam.com',
  20. author="Benjamin Bach",
  21. author_email="benjamin@overtag.dk",
  22. version=__version__,
  23. packages=packages,
  24. license='BSD License',
  25. install_requires=[
  26. 'Django>=1.9',
  27. ],
  28. url='https://github.com/benjaoming/django-stopforumspam',
  29. classifiers=CLASSIFIERS,
  30. include_package_data=True,
  31. )