1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- import os
- from setuptools import find_packages, setup
- with open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf8') as readme:
- README = readme.read()
- # allow setup.py to be run from any path
- os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
- setup(
- name='coderedcms',
- version='0.5.0',
- packages=find_packages(),
- include_package_data=True,
- license='BSD License',
- description='Wagtail-based CMS by CodeRed for building marketing websites.',
- long_description=README,
- long_description_content_type='text/markdown',
- url='https://github.com/coderedcorp/coderedcms',
- author='CodeRed LLC',
- author_email='info@coderedcorp.com',
- classifiers=[
- 'Environment :: Web Environment',
- 'Framework :: Django',
- 'Intended Audience :: Developers',
- 'Operating System :: OS Independent',
- 'Programming Language :: Python',
- 'Programming Language :: Python :: 3',
- 'Programming Language :: Python :: 3.4',
- 'Programming Language :: Python :: 3.5',
- 'Programming Language :: Python :: 3.6',
- 'Topic :: Internet :: WWW/HTTP',
- 'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
- 'Topic :: Internet :: WWW/HTTP :: Site Management',
- ],
- install_requires=[
- 'django-bootstrap4',
- 'pygments>=2.2.0,<3.0',
- 'wagtail==2.1.*',
- 'wagtailfontawesome>=1.1.3,<2.0',
- ],
- entry_points="""
- [console_scripts]
- coderedcms=coderedcms.bin.coderedcms:main
- """,
- zip_safe=False,
- )
|