summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Release 0.13.1: set version number to 0.13.1grubert2016-12-091-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7984 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Rename html_plain writer to html5_polyglott.milde2016-08-181-6/+6
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7969 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* setup.py: do not try to install xhtml11 writer (it was moved to the sandbox).milde2015-08-311-3/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7912 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Rename html_base writer to html_plain, move xhtml11 writer back to sandbox.milde2015-08-121-6/+6
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7901 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Update the datafiles list. Thanks to Tony Narlock for report and patch.milde2015-05-131-1/+2
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7894 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fix setup.py and tests after addition of writers/html_base and mv of math.css.milde2015-03-101-1/+6
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7817 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Register xhtml as alias for xhtml11 writer. Copy xhtml11.css in setup.py.milde2015-02-261-1/+3
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7805 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* New HTML writer generating `XHTML1.1`_ styled with CSS2.milde2015-02-211-1/+1
| | | | | | | | Moved to the docutils core from sandbox/html4strict. .. _XHTML1.1: http://www.w3.org/TR/xhtml11/ git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7798 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.12: set version number to 0.13grubert2014-07-061-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7763 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.11: set version number to 0.12grubert2013-07-221-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7699 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.10: set version number to 0.11grubert2012-12-161-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7569 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Classifier Python :: 2.4 to 2.7grubert2012-12-161-1/+4
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7566 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add ``math.css`` stylesheet to data files (thanks to Dmitry Shachnev).milde2012-10-151-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7529 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* math, error_reporting, and urischemes moved to the utils package. milde2012-06-251-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7464 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Drop support for Python 2.3.milde2012-06-221-2/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7463 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* add maintainer to infogrubert2012-06-191-0/+2
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7462 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.9.1: set version number to 0.10grubert2012-06-171-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7456 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.9.1: set version number to 0.9.1grubert2012-06-171-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7446 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Make tools/ compatible with both, Python 2 and 3 without 2to3-conversion.milde2012-06-131-7/+5
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7442 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fix [ 3527842 ]. milde2012-06-041-2/+3
| | | | | | | | | | | | | | | | Under Python 3, converted tests and tools are now stored in the ``test3/`` and ``tools3/`` sub-directories and not installed in the PYTHONPATH. In order to make this work: - Make tests independent from the location of the ``test/`` directory. - Use converted sources from the ``build/`` directory for tests under Python 3. Remove functional/tests/stylesheet_path_html4css1.py made redunant by functional/tests/math_output_html.py. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7437 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* pypi natural language entries changed (lithuanian vanished)grubert2012-05-031-3/+3
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7421 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.9: set version number to 0.10grubert2012-05-021-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7418 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* comment languages that pypi did not likegrubert2012-05-021-4/+5
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7415 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fix [ 2971827 ] and [ 3442827 ]milde2011-12-201-28/+0
| | | | | | extras/roman.py moved to docutils/utils/roman.py git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7268 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* docutils.utils is now a package (providing a place for sub-modules)milde2011-12-201-1/+14
| | | | | | | | | important:: docutils/math, docutils/error_reporting.py, and docutils/urischemes.py will move to the utils package in the next release, too. Code importing these modules needs to adapt. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7267 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.8.1: set version number to 0.9grubert2011-08-301-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7111 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.8.1: set version number to 0.8.1grubert2011-08-301-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7106 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.8: set version number to 0.9grubert2011-07-081-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7092 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* pypi license text changed (a little) grubert2011-07-081-2/+2
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7089 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Move from Apache 2 license to 2-Clause BSD. Solves [ 3304675 ]milde2011-06-271-2/+2
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7058 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Update the copyright/licensing info. Fixes [3304675]milde2011-05-241-3/+3
| | | | | | | | | | BSD license is not used in Docutils. Some new parts use the Apache License version 2.0. PSF contributing policy is that "contributors remain copyright holders of their contributions" (http://www.python.org/psf/contrib/). git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@7040 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Move orphaned "newlatex" writer to the sandbox.milde2010-12-071-6/+6
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6496 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Add docutils.math to installed packagesdkuhlman2010-12-071-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6494 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* XeTeX writer update/bugfix/completionmilde2010-09-211-1/+5
| | | | | | | | rst2xetex.py front end, install xetex writer with setup.py, no hyphenation in literal text. git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6431 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.7: set version number to 0.8grubert2010-07-071-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6364 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Repair the setup of extra modules broken by p3k fixes.milde2010-04-091-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6303 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Copy/convert test suite and tools with ``python3 setup.py build``.milde2010-03-181-12/+40
| | | | | | | | | | With Python 3, the "build" command copies test/ and tools/ to the build-dir and auto-converts Python sources with 2to3. These directories provied developer tools (like buildhtml.py) and the test suite. They are not installed with "install". git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6267 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Install auxiliary scripts under docutils/tools instead of the binary path.milde2010-03-091-5/+10
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6262 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Include buildhtml.py and rst_quicktest.py in package_data[\\\scripts\']milde2010-03-051-7/+4
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6259 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.6: set version number to 0.7grubert2009-10-111-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6171 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Drop extras/optparse.py and extras/textwrap.py (stdlib modules since 2.3).milde2009-10-051-3/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6154 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Fix setup.py [ 2864839 ], remove obsolete LaTeX include file.milde2009-09-231-1/+2
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6137 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Move manpage writer out of sandbox.grubert2009-08-181-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6085 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Set development status to Beta.grubert2009-08-011-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@6071 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Convert docutils to Python 3 (at least so that it runs the test suite.)gbrandl2009-04-011-42/+42
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5889 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Misc updates after initial checkindkuhlman2009-01-071-0/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5839 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Added rst2odt/odtwriter to the main branch.dkuhlman2008-12-261-2/+8
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5834 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Release 0.5: set version number to 0.6grubert2008-06-251-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5582 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* Moved OpenDocument to a project directory in sandbox.dkuhlman2007-03-211-1/+3
| | | | git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@5034 929543f6-e4f2-0310-98a6-ba3bd3dd1d04
* use different hacks for installing data files for Python 2.2wiemann2006-06-291-4/+28
| | | | | | and Python 2.3+; thanks to Guy D. Alcos! git-svn-id: http://svn.code.sf.net/p/docutils/code/trunk/docutils@4644 929543f6-e4f2-0310-98a6-ba3bd3dd1d04