kopia lustrzana https://github.com/rtts/django-simplecms
42 wiersze
1.1 KiB
Python
Executable File
42 wiersze
1.1 KiB
Python
Executable File
#!/usr/bin/env python
|
|
from setuptools import find_packages, setup
|
|
|
|
import cms
|
|
|
|
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="cms@jj.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",
|
|
"pre-commit",
|
|
"psycopg2",
|
|
"pylibmc",
|
|
],
|
|
)
|