setup.py 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. import os
  2. from setuptools import setup
  3. from coderedcms import __version__
  4. with open(os.path.join(os.path.dirname(__file__), "README.md"), encoding="utf8") as readme:
  5. README = readme.read()
  6. # allow setup.py to be run from any path
  7. os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
  8. setup(
  9. name='coderedcms',
  10. version=__version__,
  11. packages=['coderedcms'],
  12. include_package_data=True,
  13. license='BSD License',
  14. description='Wagtail-based CMS by CodeRed for building marketing websites.',
  15. long_description=README,
  16. long_description_content_type='text/markdown',
  17. url='https://github.com/coderedcorp/coderedcms',
  18. author='CodeRed LLC',
  19. author_email='info@coderedcorp.com',
  20. classifiers=[
  21. 'Environment :: Web Environment',
  22. 'Framework :: Django',
  23. 'Intended Audience :: Developers',
  24. 'Operating System :: OS Independent',
  25. 'Programming Language :: Python',
  26. 'Programming Language :: Python :: 3',
  27. 'Programming Language :: Python :: 3.6',
  28. 'Programming Language :: Python :: 3.7',
  29. 'Programming Language :: Python :: 3.8',
  30. 'Programming Language :: Python :: 3.9',
  31. 'Programming Language :: Python :: 3 :: Only',
  32. 'Framework :: Django',
  33. 'Framework :: Django :: 3.0',
  34. 'Framework :: Django :: 3.1',
  35. 'Framework :: Django :: 3.2',
  36. 'Framework :: Wagtail',
  37. 'Framework :: Wagtail :: 2',
  38. 'Topic :: Internet :: WWW/HTTP',
  39. 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
  40. 'Topic :: Internet :: WWW/HTTP :: Site Management',
  41. ],
  42. python_requires='>=3.6',
  43. install_requires=[
  44. 'beautifulsoup4>=4.8,<4.10', # should be the same as wagtail
  45. 'django-eventtools==1.0.*',
  46. 'django-bootstrap4>=2.0,<2.4',
  47. 'Django>=3.0,<3.3', # should be the same as wagtail
  48. 'geocoder==1.38.*',
  49. 'icalendar==4.0.*',
  50. 'wagtail==2.14.*',
  51. 'wagtailfontawesome>=1.2.*',
  52. 'wagtail-cache==1.*',
  53. 'wagtail-import-export>=0.2,<0.3',
  54. 'wagtail-seo==1.*',
  55. ],
  56. entry_points={
  57. "console_scripts": [
  58. "coderedcms=coderedcms.bin.coderedcms:main"
  59. ]
  60. },
  61. zip_safe=False,
  62. )