2019-03-27 15:49:14 +00:00
|
|
|
#!/usr/bin/env python
|
2021-01-23 09:29:24 +00:00
|
|
|
import cms
|
2019-04-02 14:19:43 +00:00
|
|
|
from setuptools import setup, find_packages
|
2019-03-27 15:49:14 +00:00
|
|
|
|
2021-01-22 23:31:06 +00:00
|
|
|
with open('README.md', 'r') as fh:
|
|
|
|
long_description = fh.read()
|
|
|
|
|
2019-03-27 15:49:14 +00:00
|
|
|
setup(
|
|
|
|
name = 'django-simplecms',
|
2021-01-22 23:31:06 +00:00
|
|
|
description = 'Simple Django CMS',
|
2021-01-23 09:29:24 +00:00
|
|
|
version = cms.__version__,
|
2019-03-27 15:49:14 +00:00
|
|
|
author = 'Jaap Joris Vens',
|
2021-01-22 23:31:06 +00:00
|
|
|
author_email = 'jj+cms@rtts.eu',
|
|
|
|
url = 'https://github.com/rtts/django-simplecms',
|
|
|
|
long_description = long_description,
|
|
|
|
long_description_content_type = 'text/markdown',
|
2019-04-02 14:19:43 +00:00
|
|
|
packages = find_packages(),
|
2021-01-22 23:15:44 +00:00
|
|
|
entry_points = {
|
|
|
|
'console_scripts': ['simplecms=cms.__main__:main'],
|
|
|
|
},
|
2019-04-02 14:28:36 +00:00
|
|
|
include_package_data = True,
|
2021-01-22 23:31:06 +00:00
|
|
|
classifiers = [
|
|
|
|
'Programming Language :: Python :: 3',
|
2021-01-23 10:38:10 +00:00
|
|
|
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
|
2021-01-22 23:31:06 +00:00
|
|
|
'Operating System :: OS Independent',
|
|
|
|
],
|
|
|
|
python_requires = '>=3.8',
|
2019-03-27 15:49:14 +00:00
|
|
|
install_requires = [
|
|
|
|
'django',
|
2020-01-02 02:33:41 +00:00
|
|
|
'django-extensions',
|
2019-03-27 15:49:14 +00:00
|
|
|
'django-embed-video',
|
2021-01-23 10:38:10 +00:00
|
|
|
'django-tidy',
|
2019-03-27 15:49:14 +00:00
|
|
|
'easy-thumbnails',
|
2020-01-02 02:33:41 +00:00
|
|
|
'libsass',
|
2020-03-24 00:15:17 +00:00
|
|
|
'markdown',
|
|
|
|
'psycopg2',
|
|
|
|
'pylibmc',
|
2019-03-27 15:49:14 +00:00
|
|
|
],
|
|
|
|
)
|