setup.py 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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.9.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. 'Programming Language :: Python :: 3 :: Only',
  30. 'Framework :: Django',
  31. 'Framework :: Django :: 2.0',
  32. 'Framework :: Wagtail',
  33. 'Framework :: Wagtail :: 2',
  34. 'Topic :: Internet :: WWW/HTTP',
  35. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  36. 'Topic :: Internet :: WWW/HTTP :: Site Management',
  37. ],
  38. install_requires=[
  39. 'django-bootstrap4',
  40. 'django>=1.11,<2.1',
  41. 'pygments>=2.2.0,<3.0',
  42. 'wagtail==2.2.*',
  43. 'wagtailfontawesome>=1.1.3,<2.0',
  44. 'geocoder>=1.38.1,<2.0',
  45. 'wagtail-import-export>=0.1,<0.2'
  46. ],
  47. entry_points="""
  48. [console_scripts]
  49. coderedcms=coderedcms.bin.coderedcms:main
  50. """,
  51. zip_safe=False,
  52. )