-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
65 lines (57 loc) · 2.12 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
# django-djangoplus setup
# First version of this file done by Guilherme Semente
# Some things was copied from Django's setup.py
from distutils.command.install import INSTALL_SCHEMES
import os, sys
# Downloads setuptools if not find it before try to import
try:
import ez_setup
ez_setup.use_setuptools()
except ImportError:
pass
from setuptools import setup
from djangoplus import get_version
# Tell distutils to put the data_files in platform-specific installation
# locations. See here for an explanation:
# http://groups.google.com/group/comp.lang.python/browse_thread/thread/35ec7b2fed36eaec/2105ee4d9e8042cb
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
data_files = []
for dirpath, dirnames, filenames in os.walk('djangoplus'):
# Ignore dirnames that start with '.'
for i, dirname in enumerate(dirnames):
if dirname.startswith('.'): del dirnames[i]
if filenames:
data_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]])
# Small hack for working with bdist_wininst.
# See http://mail.python.org/pipermail/distutils-sig/2004-August/004134.html
if len(sys.argv) > 1 and sys.argv[1] == 'bdist_wininst':
for file_info in data_files:
file_info[0] = '\\PURELIB\\%s' % file_info[0]
setup(
name = 'django-plus',
version = get_version(),
description = 'Django utilities library',
long_description = 'django-plus is a library containing a coupple of utilities for Django developers.',
author = 'Marinho Brandao',
author_email = 'marinho@gmail.com',
url = 'http://django-plus.googlecode.com',
license = 'GNU Lesser General Public License (LGPL)',
packages = [
'djangoplus',
'djangoplus.fieldtypes',
'djangoplus.forms',
'djangoplus.management',
'djangoplus.management.commands',
'djangoplus.middleware',
'djangoplus.shortcuts',
'djangoplus.templatetags',
'djangoplus.tests',
'djangoplus.urls',
'djangoplus.utils',
'djangoplus.views',
'djangoplus.widgets',
],
data_files = data_files,
include_package_data=True,
)