This repository has been archived by the owner on Jul 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·60 lines (55 loc) · 1.68 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
#!/usr/bin/env python
# If you find that Ductus fails to work with a setup that is valid according to
# the requirements given below, please report a bug at
# <http://code.ductus.us/>. See also requirements.txt, which lists the
# specific packages this version of Ductus has been tested against.
# Python 2.7.x is also a dependency.
# fixme: recursive-include's in MANIFEST.in don't ignore text editor backup
# files (such as *~)
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='Ductus',
version='0.2pre',
description='Structured wiki system, designed for language instruction at wikiotics.org',
license='GNU GPLv3 or later',
author='Jim Garrison',
author_email='[email protected]',
url='http://ductus.us/',
install_requires=(
'Django >= 1.4',
'Creoleparser >= 0.7.3',
'lxml',
'PIL',
'python-magic',
),
extras_require={
'flickr': ['flickrapi >= 1.2'],
'highlighting': ['pygments'],
'captcha': ['recaptcha-client'],
},
packages=(
'ductus',
'ductus.initialize',
'ductus.utils',
'ductus.utils.bcp47',
'ductus.resource',
'ductus.resource.storage',
'ductus.special',
'ductus.wiki',
'ductus.wiki.templatetags',
'ductus.user',
'ductus.template_loaders',
'ductus.middleware',
'ductus.license',
'ductus.modules',
'ductus.modules.audio',
'ductus.modules.picture',
'ductus.modules.flashcards',
'ductus.modules.otics',
'ductus.modules.textwiki',
'ductus.modules.textwiki.templatetags',
),
)