setup.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. import os
  2. from setuptools import find_packages, setup
  3. with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf8') as readme:
  4. README = readme.read()
  5. # allow setup.py to be run from any path
  6. os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
  7. setup(
  8. name='coderedcms',
  9. version='0.8.0',
  10. packages=find_packages(),
  11. include_package_data=True,
  12. license='BSD License',
  13. description='Wagtail-based CMS by CodeRed for building marketing websites.',
  14. long_description=README,
  15. long_description_content_type='text/markdown',
  16. url='https://github.com/coderedcorp/coderedcms',
  17. author='CodeRed LLC',
  18. author_email='info@coderedcorp.com',
  19. classifiers=[
  20. 'Environment :: Web Environment',
  21. 'Framework :: Django',
  22. 'Intended Audience :: Developers',
  23. 'Operating System :: OS Independent',
  24. 'Programming Language :: Python',
  25. 'Programming Language :: Python :: 3',
  26. 'Programming Language :: Python :: 3.4',
  27. 'Programming Language :: Python :: 3.5',
  28. 'Programming Language :: Python :: 3.6',
  29. 'Topic :: Internet :: WWW/HTTP',
  30. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  31. 'Topic :: Internet :: WWW/HTTP :: Site Management',
  32. ],
  33. install_requires=[
  34. 'django-bootstrap4',
  35. 'django>=1.11,<2.1',
  36. 'pygments>=2.2.0,<3.0',
  37. 'wagtail==2.2.*',
  38. 'wagtailfontawesome>=1.1.3,<2.0',
  39. ],
  40. entry_points="""
  41. [console_scripts]
  42. coderedcms=coderedcms.bin.coderedcms:main
  43. """,
  44. zip_safe=False,
  45. )