kopia lustrzana https://github.com/rtts/django-simplecms
Remove unused files
rodzic
95a5dd424f
commit
d6836a6828
BIN
logo.gif
BIN
logo.gif
Plik binarny nie jest wyświetlany.
Przed Szerokość: | Wysokość: | Rozmiar: 2.3 KiB |
15
manage.py
15
manage.py
|
@ -1,15 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
import os
|
||||
import sys
|
||||
|
||||
if __name__ == "__main__":
|
||||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "example.settings")
|
||||
try:
|
||||
from django.core.management import execute_from_command_line
|
||||
except ImportError as exc:
|
||||
raise ImportError(
|
||||
"Couldn't import Django. Are you sure it's installed and "
|
||||
"available on your PYTHONPATH environment variable? Did you "
|
||||
"forget to activate a virtual environment?"
|
||||
) from exc
|
||||
execute_from_command_line(sys.argv)
|
42
setup.py
42
setup.py
|
@ -1,42 +0,0 @@
|
|||
#!/usr/bin/env python
|
||||
import cms
|
||||
from setuptools import find_packages, setup
|
||||
|
||||
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",
|
||||
"psycopg2",
|
||||
"pylibmc",
|
||||
],
|
||||
)
|
Ładowanie…
Reference in New Issue