setup.py 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.5.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. 'pygments>=2.2.0,<3.0',
  36. 'wagtail==2.1.*',
  37. 'wagtailfontawesome>=1.1.3,<2.0',
  38. ],
  39. entry_points="""
  40. [console_scripts]
  41. coderedcms=coderedcms.bin.coderedcms:main
  42. """,
  43. zip_safe=False,
  44. )