forked from wardi/django-page-cms
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
60 lines (55 loc) · 1.92 KB
/
setup.py
File metadata and controls
60 lines (55 loc) · 1.92 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import pages
package_name = 'django-page-cms'
def local_open(fname):
return open(os.path.join(os.path.dirname(__file__), fname))
import os
data_dirs = []
for directory in os.walk('pages/templates'):
data_dirs.append(directory[0][6:]+'/*.*')
for directory in os.walk('pages/media'):
data_dirs.append(directory[0][6:]+'/*.*')
url_schema = 'http://pypi.python.org/packages/source/d/%s/%s-%s.tar.gz'
download_url = url_schema % (package_name, package_name, pages.__version__)
setup(
name=package_name,
test_suite='pages.test_runner.run_tests',
version=pages.__version__,
description=pages.__doc__,
author=pages.__author__,
author_email=pages.__contact__,
url=pages.__homepage__,
license=pages.__license__,
long_description=local_open('README.rst').read(),
download_url=download_url,
install_requires=[
'BeautifulSoup',
'Django',
'html5lib>=0.10',
'django-tagging>0.2.1',
'django-mptt-2>0.2.1',
'django-authority',
'django-staticfiles',
'django-haystack',
# necessary for tests
'coverage',
],
packages=find_packages(exclude=['example', 'example.*']),
# very important for the binary distribution to include the templates.
package_data={'pages': data_dirs},
#include_package_data=True, # include package data under svn source control
zip_safe=False,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
'Programming Language :: Python :: 2.3',
'Programming Language :: JavaScript',
'Topic :: Internet :: WWW/HTTP :: Site Management',
],
)