kopia lustrzana https://github.com/rtts/django-simplecms
40 wiersze
1.1 KiB
Python
Executable File
40 wiersze
1.1 KiB
Python
Executable File
#!/usr/bin/env python
|
|
import cms
|
|
from setuptools import setup, find_packages
|
|
|
|
with open('README.md', 'r') as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(
|
|
name = 'django-simplecms',
|
|
description = 'Simple Django CMS',
|
|
version = cms.__version__,
|
|
author = 'Jaap Joris Vens',
|
|
author_email = 'jj+cms@rtts.eu',
|
|
url = 'https://github.com/rtts/django-simplecms',
|
|
long_description = long_description,
|
|
long_description_content_type = 'text/markdown',
|
|
packages = find_packages(),
|
|
entry_points = {
|
|
'console_scripts': ['simplecms=cms.__main__:main'],
|
|
},
|
|
include_package_data = True,
|
|
classifiers = [
|
|
'Programming Language :: Python :: 3',
|
|
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
|
|
'Operating System :: OS Independent',
|
|
],
|
|
python_requires = '>=3.8',
|
|
install_requires = [
|
|
'django',
|
|
'django-extensions',
|
|
'django-embed-video',
|
|
'django-tidy',
|
|
'easy-thumbnails',
|
|
'libsass',
|
|
'markdown',
|
|
'psycopg2',
|
|
'pylibmc',
|
|
],
|
|
)
|