forked from moinwiki/moin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
137 lines (127 loc) · 5.57 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
#!/usr/bin/env python
# Copyright: 2001 by Juergen Hermann <[email protected]>
# Copyright: 2001-2018 MoinMoin:ThomasWaldmann
# Copyright: 2023 MoinMoin project
# License: GNU GPL v2 (or any later version), see LICENSE.txt for details.
import os
from setuptools import setup, find_packages
basedir = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(basedir, 'README.rst')) as f:
long_description = f.read()
setup_args = dict(
name="moin",
python_requires='>=3.8',
description="MoinMoin is an easy to use, full-featured and extensible wiki software package",
long_description_content_type="text/x-rst",
long_description=long_description,
author="Juergen Hermann et al.",
author_email="[email protected]",
# maintainer(_email) not active because distutils/register can't handle author and maintainer at once
url="https://moinmo.in/",
license="GNU GPL v2 (or any later version)",
keywords="wiki web",
platforms="any",
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"Intended Audience :: Other Audience",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Office/Business :: Groupware",
"Topic :: Text Processing :: Markup",
],
packages=find_packages(where='src', exclude=['_tests', ]),
package_dir={'': 'src'},
package_data={
'moin.translations': ['MoinMoin.pot', '*.po', ],
'moin.static': ['*', ],
'moin.themes.modernized': ['*', ],
'moin.themes.basic': ['*', ],
'moin.themes.topside': ['*', ],
'moin.themes.topside_cms': ['*', ],
'moin.templates': ['*.html', '*.xml', ],
'moin.apps.admin.templates': ['*.html', ],
'moin.apps.misc.templates': ['*.html', '*.txt', ],
},
include_package_data=True,
zip_safe=False,
use_scm_version={
'write_to': os.path.join('src', 'moin', '_version.py'),
},
setup_requires=[
'setuptools_scm', # magically cares for version and packaged files
],
install_requires=[
'Babel>=2.10.0', # internationalization support
'blinker>=1.5', # event signalling (e.g. for change notification trigger)
'docutils>=0.18.1', # reST markup processing
'Markdown>=3.4.1', # Markdown markup processing
'mdx_wikilink_plus>=1.4.1', # Markdown Wikilinks extension
'Flask<2.3.0', # micro framework
'Flask-Babel>=3.0.0', # i18n support
'Flask-Caching>=1.2.0', # caching support
'Flask-Theme>=0.3.6', # theme support
'emeraldtree>=0.10.0', # xml processing
'feedgen==0.9.*', # Atom feed
'flatland>=0.8', # form handling
'Jinja2>=3.1.0', # template engine
'markupsafe<=2.2.0', # safe html and xml
'pygments>=1.4', # src code / text file highlighting
'Werkzeug', # wsgi toolkit
'whoosh>=2.7.0', # needed for indexed search
'pdfminer.six', # pdf -> text/plain conversion
'passlib>=1.6.0', # strong password hashing (1.6 needed for consteq)
'setuptools>=51', # dependency with setuptools_scm
'sqlalchemy<2.0', # used by sqla store
'XStatic>=0.0.2', # support for static file pypi packages
'XStatic-Bootstrap==3.1.1.2',
'XStatic-Font-Awesome>=6.2.1.0',
'XStatic-CKEditor>=3.6.1.2',
'XStatic-autosize',
'XStatic-jQuery>=1.8.2',
'XStatic-jQuery-File-Upload>=10.31.0',
'XStatic-svg-edit-moin>=2012.11.15.1',
'XStatic-JQuery.TableSorter>=2.14.5.1',
'XStatic-Pygments>=1.6.0.1',
],
# optional features and their list of requirements
extras_require={
# 'featurename': ["req1", "req2", ],
'pillow': ["pillow"], # successor to PIL; used by image get for scaling/rotating/etc.;
# requires special libs/header to be installed before it can be compiled successfully
'ldap': ["python-ldap"], # used by ldap auth; requires special libs/header
# to be installed before it can be compiled successfully
# windows binaries available from 3rd parties
},
entry_points=dict(
console_scripts=['moin = moin.cli:cli',],
),
# stuff for babel:
message_extractors={
'src': [
('moin/templates/**.html', 'jinja2', None),
('moin/templates/dictionary.js', 'jinja2', None), # all JS translatable strings must be
# defined here for jQuery i18n plugin
('moin/apps/**/templates/**.html', 'jinja2', None),
('moin/themes/**/templates/**.html', 'jinja2', None),
('moin/**/_tests/**', 'ignore', None),
('moin/static/**', 'ignore', None),
('moin/**.py', 'python', None),
],
},
)
if __name__ == '__main__':
setup(**setup_args)