forked from django-cms/django-cms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
76 lines (71 loc) · 2.49 KB
/
setup.py
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
from setuptools import setup, find_packages
import os, fnmatch
import cms
media_files = []
for dirpath, dirnames, filenames in os.walk(os.path.join('cms', 'media')):
for filename in filenames:
filepath = os.path.join(dirpath, filename)
failed = False
for pattern in ('*.py', '*.pyc', '*~', '.*', '*.bak', '*.swp*'):
if fnmatch.fnmatchcase(filename, pattern):
failed = True
if failed:
continue
media_files.append(os.path.join(*filepath.split(os.sep)[1:]))
if cms.VERSION[-1] == 'final':
CLASSIFIERS = ['Development Status :: 5 - Production/Stable']
elif 'beta' in cms.VERSION[-1]:
CLASSIFIERS = ['Development Status :: 4 - Beta']
else:
CLASSIFIERS = ['Development Status :: 3 - Alpha']
CLASSIFIERS += [
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries :: Application Frameworks',
]
setup(
author="Patrick Lauber",
author_email="[email protected]",
name='django-cms',
version=cms.__version__,
description='An Advanced Django CMS',
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
url='http://www.django-cms.org/',
license='BSD License',
platforms=['OS Independent'],
classifiers=CLASSIFIERS,
install_requires=[
'Django>=1.2',
'django-classy-tags>=0.3.3',
'south>=0.7.2',
'django-mptt>=0.4.2',
'django-sekizai>=0.4.2',
],
packages=find_packages(exclude=["testdata","testdata.*"]),
include_package_data=True,
# package_data={
# 'cms': [
# 'templates/admin/*.html',
# 'templates/admin/cms/mail/*.html',
# 'templates/admin/cms/mail/*.txt',
# 'templates/admin/cms/page/*.html',
# 'templates/admin/cms/page/*/*.html',
# 'templates/cms/*.html',
# 'templates/cms/*/*.html',
# 'plugins/*/templates/cms/plugins/*.html',
# 'plugins/*/templates/cms/plugins/*/*.html',
# 'plugins/*/templates/cms/plugins/*/*.js',
# 'locale/*/LC_MESSAGES/*',
# ] + media_files,
# 'menus': [
# 'templates/menu/*.html',
# ],
# },
zip_safe = False
)