-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
47 lines (45 loc) · 969 Bytes
/
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
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = "Zwiki",
version = "2.0b1",
author = "Simon Michael & co.",
author_email = "[email protected]",
description = "Zwiki, the Zope-based wiki engine.",
long_description = "Zwiki, the Zope-based wiki engine.",
url = "http://zwiki.org",
platforms = [],
keywords = "wiki zope",
classifiers = [],
license = "GPL",
scripts = [],
py_modules = [
"__init__",
"Admin",
"CMF",
"Catalog",
"Comments",
"Defaults",
"Diff",
"Editing",
"History",
"Mail",
"Outline",
"OutlineSupport",
"PageTypes",
"Permissions",
"Regexps",
"Splitter",
"TextFormatter",
"Utils",
"Views",
"ZWikiPage",
],
packages = find_packages(),
package_data = {
'':['*.txt'],
},
install_requires = [
'Zope2>=2.12',
],
)