3 # Copyright: This file has been placed in the public domain.
9 from distutils
.core
import setup
, Command
10 from distutils
.command
.build
import build
11 from distutils
.command
.build_py
import build_py
12 if sys
.version_info
>= (3,):
13 from distutils
.command
.build_py
import build_py_2to3
14 from distutils
.util
import copydir_run_2to3
15 from distutils
.command
.install_data
import install_data
16 from distutils
.util
import convert_path
17 from distutils
import log
19 print ('Error: The "distutils" standard module, which is required for the ')
20 print ('installation of Docutils, could not be found. You may need to ')
21 print ('install a package called "python-devel" (or similar) on your ')
22 print ('system using your package manager.')
26 if sys
.version_info
>= (3,):
27 # copy-convert auxiliary python sources
28 class copy_build_py_2to3(build_py_2to3
):
29 """Copy/convert Python source files in given directories recursively.
31 Build py3k versions of the modules and packages.
32 Also copy 'test/' suite and run 2to3 on *.py files.
35 exclude *.pyc *~ .DS_Store
36 recursive-exclude * *.pyc *~ .DS_Store
37 recursive-exclude functional/output *
38 include functional/output/README.txt
47 build_py_2to3
.run(self
)
48 print("copy/convert test suite")
49 loglevel
= log
.set_threshold(log
.ERROR
)
50 copydir_run_2to3('test', 'test3', template
=self
.manifest_in
)
51 log
.set_threshold(loglevel
)
54 class smart_install_data(install_data
):
55 # From <http://wiki.python.org/moin/DistutilsInstallDataScattered>,
59 #need to change self.install_dir to the library dir
60 install_cmd
= self
.get_finalized_command('install')
61 self
.install_dir
= getattr(install_cmd
, 'install_lib')
62 return install_data
.run(self
)
64 class build_data(Command
):
66 def initialize_options(self
):
69 def finalize_options(self
):
73 build_py
= self
.get_finalized_command('build_py')
74 data_files
= self
.distribution
.data_files
76 dir = convert_path(f
[0])
77 dir = os
.path
.join(build_py
.build_lib
, dir)
80 data
= convert_path(data
)
81 self
.copy_file(data
, dir)
83 # let our build_data run
84 build
.sub_commands
.append(('build_data', lambda *a
: True))
88 kwargs
= package_data
.copy()
89 kwargs
['classifiers'] = classifiers
90 # Install data files properly.
91 kwargs
['cmdclass'] = {'build_data': build_data
,
92 'install_data': smart_install_data
}
93 # Auto-convert source code for Python 3
94 if sys
.version_info
>= (3,):
95 kwargs
['cmdclass']['build_py'] = copy_build_py_2to3
97 kwargs
['cmdclass']['build_py'] = build_py
98 dist
= setup(**kwargs
)
102 for dir in glob
.glob('docutils/writers/s5_html/themes/*'):
103 if os
.path
.isdir(dir):
104 theme_files
= glob
.glob('%s/*' % dir)
105 s5_theme_files
.append((dir, theme_files
))
109 'description': 'Docutils -- Python Documentation Utilities',
110 'long_description': """\
111 Docutils is a modular system for processing documentation
112 into useful formats, such as HTML, XML, and LaTeX. For
113 input Docutils supports reStructuredText, an easy-to-read,
114 what-you-see-is-what-you-get plaintext markup syntax.""", # wrap at col 60
115 'url': 'http://docutils.sourceforge.net/',
117 'author': 'David Goodger',
118 'author_email': 'goodger@python.org',
119 'maintainer': 'docutils-develop list',
120 'maintainer_email': 'docutils-develop@lists.sourceforge.net',
121 'license': 'public domain, Python, 2-Clause BSD, GPL 3 (see COPYING.txt)',
122 'platforms': 'OS-independent',
123 'package_dir': {'docutils': 'docutils',
124 'docutils.tools': 'tools'},
125 'packages': ['docutils',
126 'docutils.languages',
128 'docutils.parsers.rst',
129 'docutils.parsers.rst.directives',
130 'docutils.parsers.rst.languages',
132 # 'docutils.readers.python', # in the sandbox since 0.8
133 'docutils.transforms',
137 'docutils.writers.html4css1',
138 # 'docutils.writers.html4strict', # in the sandbox!
139 'docutils.writers.pep_html',
140 'docutils.writers.s5_html',
141 'docutils.writers.latex2e',
142 # 'docutils.writers.newlatex2e', # in the sandbox since 0.8
143 'docutils.writers.xetex',
144 'docutils.writers.odf_odt',
146 'data_files': ([('docutils/parsers/rst/include',
147 glob
.glob('docutils/parsers/rst/include/*.txt')),
148 ('docutils/writers/html4css1',
149 ['docutils/writers/html4css1/html4css1.css',
150 'docutils/writers/html4css1/template.txt']),
151 ('docutils/writers/latex2e',
152 ['docutils/writers/latex2e/default.tex',
153 'docutils/writers/latex2e/titlepage.tex',
154 'docutils/writers/latex2e/xelatex.tex',]),
155 ('docutils/writers/pep_html',
156 ['docutils/writers/pep_html/pep.css',
157 'docutils/writers/pep_html/template.txt']),
158 ('docutils/writers/s5_html/themes',
159 ['docutils/writers/s5_html/themes/README.txt']),
160 ('docutils/writers/odf_odt',
161 ['docutils/writers/odf_odt/styles.odt']),
164 'scripts' : ['tools/rst2html.py',
166 'tools/rst2latex.py',
167 'tools/rst2xetex.py',
170 'tools/rst2pseudoxml.py',
171 'tools/rstpep2html.py',
173 'tools/rst2odt_prepstyles.py',
175 """Distutils setup parameters."""
178 'Development Status :: 4 - Beta',
179 'Environment :: Console',
180 'Intended Audience :: End Users/Desktop',
181 'Intended Audience :: Other Audience',
182 'Intended Audience :: Developers',
183 'Intended Audience :: System Administrators',
184 'License :: Public Domain',
185 'License :: OSI Approved :: Python Software Foundation License',
186 'License :: OSI Approved :: BSD License',
187 'License :: OSI Approved :: GNU General Public License (GPL)',
188 'Operating System :: OS Independent',
189 'Programming Language :: Python',
190 'Programming Language :: Python :: 3',
191 'Topic :: Documentation',
192 'Topic :: Software Development :: Documentation',
193 'Topic :: Text Processing',
194 'Natural Language :: English', # main/default language, keep first
195 'Natural Language :: Afrikaans',
196 'Natural Language :: Catalan',
197 'Natural Language :: Chinese (Simplified)',
198 'Natural Language :: Chinese (Traditional)',
199 'Natural Language :: Czech',
200 'Natural Language :: Dutch',
201 'Natural Language :: Esperanto',
202 'Natural Language :: Finnish',
203 'Natural Language :: French',
204 'Natural Language :: Galician',
205 'Natural Language :: German',
206 'Natural Language :: Italian',
207 'Natural Language :: Japanese',
208 'Natural Language :: Polish',
209 'Natural Language :: Portuguese (Brazilian)',
210 'Natural Language :: Russian',
211 'Natural Language :: Slovak',
212 'Natural Language :: Spanish',
213 'Natural Language :: Swedish',
215 # BUG pypi did not like fllowing languages
216 # 'Natural Language :: Lithuanian',
217 """Trove classifiers for the Distutils "register" command."""
219 if __name__
== '__main__' :