This repository was archived by the owner on Jun 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
46 lines (44 loc) · 1.34 KB
/
setup.py
File metadata and controls
46 lines (44 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
from setuptools import setup, find_packages
from finch import __version__
setup(
name='finch-cms',
version=__version__,
description="Simple but flexible CMS for django",
long_description=open('README.rst').read(),
keywords='django cms',
author='Peter van Kampen',
author_email='pterk@datatailors.com',
url='https://github.com/pterk/finch-cms',
license='BSD',
packages=find_packages(),
#package_data={'finch': ['templates/*/*',
# 'static/*/*/*/*/*/*/*/*/*',
# ]},
include_package_data=True,
install_requires=[
'Django==1.3',
'pillow',
'South',
'Whoosh',
'django-bop',
'django-filebrowser',
#'django-grappelli==2.3.5',
'django-haystack',
'django-treebeard',
'django-contentmanager',
'django-tinymce'
],
dependency_links = [
'https://github.com/aljosa/django-tinymce/tarball/master#egg=django-tinymce-trunk'
],
zip_safe=False,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
"License :: OSI Approved :: BSD License",
'Programming Language :: Python',
'Framework :: Django',
],
)