aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* The build_docs command now uses extra and toc extensions and a template on ↵Waylan Limberg2011-08-041-31/+14
| | | | the file system.
* Set version to '2.1.0.alpha'.2.1.0.alphaWaylan Limberg2011-08-031-1/+1
|
* setup.py: Replaced file(.) with open(.) as Python 3 doesn't have file(.)Henri Wiechers2011-01-211-1/+1
|
* Fixed line length of previous commit. Some of us still use (and prefer) text ↵Waylan Limberg2011-01-091-2/+2
| | | | editors on the console. Let's keep lines under 80 characters in length.
* Fixed setup.py to work with python 3.x (The imported markdown module in ↵Virgil Dupras2011-01-091-4/+8
| | | | build_docs would be the one that wasn't 2to3'ed, thus causing a syntax error).
* Added the mechanism for simple unstlyed navigation menu to the generated ↵Waylan Limberg2010-08-201-11/+30
| | | | docs. Still need to add the data to the docs themselves. That will come when I update the docs.
* Made the build_docs command a subcommand of build in setup script. This ↵Waylan Limberg2010-08-201-5/+12
| | | | still does not install docs on the system. It just writes html to the temp build dir.
* Added a simple unstyled template to the build_docs script. The generated ↵Waylan Limberg2010-08-201-2/+35
| | | | docs (should) now validate as xhtml - assuming they parse correctly. I suspect the docs need some updating though.
* Merge branch 'master' of git@gitorious.org:python-markdown/mainlineWaylan Limberg2010-08-201-3/+4
|\
| * Fixed ticket 69. Corrected a few syntax incompatabilities between python 2.x ↵Waylan Limberg2010-08-031-3/+4
| | | | | | | | and 3.x in the setup script. Now the script actually can run 2to3 automaticaly when run under Python 3.x. Thanks for the report Virgil Dupras.
* | Added a build_docs command to setup script. This command only builds ↵Waylan Limberg2010-08-201-1/+57
|/ | | | (converts text files to html) in the build dir. It does not install them on the system.
* The 2to3 tool now gets run automaticaly when building in Python 3.x.Waylan Limberg2010-07-141-1/+10
|
* Made some changes to setup.py. Markdown version is now set to 2.1.0.Dev as ↵Waylan Limberg2010-07-141-2/+2
| | | | it should have been for some time now. Also updated classifiers to correctly represent the Python versions we support. Removed 2.3 and added 2.7.
* Fixed Ticket 66. We have dropped official support for Python 3.0 and now ↵Waylan Limberg2010-07-141-1/+1
| | | | only officially support Python 3.1+ in the Python 3 series (we still support 2.4, 2.5 & 2.6 in the Python 2 series). If you really must use Python 3.0, we suggest using Python 3.1's 2to3 tool. See comment in source and Ticket 66 for more.
* Fixed Ticket 63. Changed name of commandline script (again) to 'markdown_py' ↵Waylan Limberg2010-07-011-4/+10
| | | | because 'markdown' conflicts with the perl implementation. 'markdown_py' will at least still work with tab completion when the user types 'markdown'.
* Fixed a silly bug in setup.py. Importing version from the lib requires that ↵2.0.3Waylan Limberg2009-10-071-1/+2
| | | | all dependencaies for the lib are present, so we can't actuly import the lib until after we check for dependencies - which means we can't import version in the setup script. Grrr. We'll have to remember to update the version number in both places from now on. Sigh.
* Updated setup script to include dependency for elementtree when python ↵Waylan Limberg2009-07-311-33/+38
| | | | version < 2.5. Since Cheetah just added a dependency on Markdown (in 2.2.2) we've received numerious complaints from people trying to easy_install Cheetah on older pythons.
* Fixed commandline issues and upped version to 2.0.1-beta. Renamed ↵Waylan Limberg2009-05-051-1/+29
| | | | markdown.py to markdown and added a markdown.bat wrapper for win32. Also had to put markdown script in a bin dir so it doesn't clash with the markdown lib dir because win32 doesn't allow a dir and file of the same name in same parent dir.
* Set version to 2.0-rc2.Waylan Limberg2009-03-191-1/+0
|
* Upped version to 2.0-rc12.0-rc1Waylan Limberg2009-03-081-2/+3
|
* Added some more meta-data to setup.py. Shouldn't have to manually edit pypi ↵Waylan Limberg2009-02-041-0/+14
| | | | page anymore.
* Updated setup.py license to match the actual license.Waylan Limberg2009-02-021-1/+1
|
* Updated setup.py and MANIFEST for recent package refactor.Waylan Limberg2008-11-221-4/+3
|
* More cleanup. Not sure why some executables didn't have shebang lines. They ↵Waylan Limberg2008-10-291-0/+2
| | | | do now.
* Cleaning house. Actually have all executables be executable and stop Vim's ↵Waylan Limberg2008-10-281-0/+0
| | | | .swp files from showing up in git status.
* 2.0-beta tag.2.0-betaArtem Yunusov2008-08-181-1/+1
|
* renamed extension module and set import to extension module first, then ↵Waylan Limberg2008-08-111-1/+1
| | | | mdx_filename
* More cleanup of setup.pyWaylan Limberg2008-08-091-1/+0
|
* Cleaned up setup.pyWaylan Limberg2008-08-091-11/+3
|
* Added commandline script and updated CHANGE_LOG and MANIFEST.Waylan Limberg2008-08-051-0/+1
|
* Added alpha version tag.2.0-alphaArtem Yunusov2008-08-051-1/+1
|
* Added Meta-Data and HeaderId extensions. Updated setup.py to include all ↵Waylan Limberg2008-05-121-1/+11
| | | | packages extensions.
* forgot to update version_info for 1.7 releaseWaylan Limberg2008-02-201-1/+1
|
* Final commit before 1.7 final is released. Updated CHAGE_LOG, setp.py 1.7_FinalWaylan Limberg2008-02-181-3/+4
| | | | | and added a MANIFEST file.
* Adjustments to match unicode policy as discussed on list and other minor Waylan Limberg2007-12-131-1/+1
| | | | | cleanup in preparation for release 1.7.
* Added extensions to setup.pyYuri Takhteyev2007-03-181-0/+13