kopia lustrzana https://github.com/rtts/django-simplecms
20 wiersze
468 B
Python
Executable File
20 wiersze
468 B
Python
Executable File
#!/usr/bin/env python
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(
|
|
name = 'django-simplecms',
|
|
version = '1.0',
|
|
url = 'https://github.com/rtts/django-simplecms',
|
|
author = 'Jaap Joris Vens',
|
|
author_email = 'jj@rtts.eu',
|
|
license = 'GPL3',
|
|
packages = find_packages(),
|
|
include_package_data = True,
|
|
install_requires = [
|
|
'django',
|
|
'django-ckeditor',
|
|
'django-embed-video',
|
|
'easy-thumbnails',
|
|
],
|
|
)
|