summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Revert setup.py changes. Ensure universal wheels.3.4.0Justin Mayer2014-07-011-2/+1
| | | | | | | | Attempts at fancy version number handling in setup.py caused more problems than they were worth, including Travis CI build failures. The setup.cfg key for universal binary wheel generation apparently changed at some point, so that was updated as well.
* Work around setup.py encoding issue in last commitJustin Mayer2014-07-011-1/+1
|
* setup.py version should inherit from __init.py__Justin Mayer2014-07-011-1/+3
|
* Require six version 1.4.0 or later.OGINO Masanori2014-06-101-1/+2
| | | | | | six.moves.urllib.parse is available since version 1.4.0. Signed-off-by: OGINO Masanori <masanori.ogino@gmail.com>
* change date metadata parsing to dateutil.parserStefan hr Berder2014-02-231-1/+1
|
* Work around pytz & pip 1.4+ problem. Fixes #996.Justin Mayer2013-08-081-1/+1
| | | | | | | | The latest version of pip (1.4) no longer installs pre-release versions (alpha, beta, etc.) by default. Because pytz uses an unorthodox version number scheme, pip thinks it's a pre-release and skips it. This change to setup.py should alleviate the problem until it is otherwise resolved.
* Normalize whitespace via lstrip Jinja parameterJustin Mayer2013-08-031-1/+1
| | | | | | | | | | | | | This adds the lstrip_blocks Jinja parameter and removes unnecessary whitespace from a few notmyidea templates. Note: The lstrip_blocks parameter requires Jinja 2.7+, which has been noted in Pelican's setup.py. Credit for this commit goes entirely to Russ Webber, who has earned my eternal thanks for discovering and applying this useful Jinja parameter. Refs #969
* Drop python 3.2 support and move to python 3.3.Simon Conseil2013-06-021-6/+1
| | | | | Jinja 2.7 (released 2013-05-20) supports only Python3 >=3.3 so it is time to drop Python 3.2 and move to 3.3
* Update version requirement with feedgenerator 1.6Simon Conseil2013-06-021-1/+1
| | | | | feedgenerator 1.6 changes the order of attributes in feeds, so we must use this version to have consistent functionnal tests.
* adhere to PEP8 coding standardsDominique Plante2013-05-141-3/+3
|
* Prepare for next versionJustin Mayer2013-04-241-1/+1
|
* remove plugins, update docs and update dependeciesDeniz Turgut2013-04-121-1/+1
|
* Move the tests into pelican. Fix #500Alexis Métaireau2013-03-061-1/+1
|
* setup.py: Update trove classifiers to Python 2.7, 3.2, and 3.3W. Trevor King2013-01-181-1/+3
|
* Port pelican to python 3.Dirk Makowski2013-01-111-2/+2
| | | | Stays compatible with 2.x series, thanks to an unified codebase.
* update the version of jinja needed, 2.6 is outAlexis Métaireau2012-12-181-1/+1
|
* add the changelog to the text on PyPIAlexis Métaireau2012-12-041-2/+7
|
* bump version numberAlexis Métaireau2012-12-041-1/+1
|
* tagging 3.1Alexis Métaireau2012-12-041-1/+1
|
* add a way to run setup.py testAlexis Metaireau2012-08-131-0/+1
|
* PEP8-ifyAlexis Metaireau2012-08-131-21/+24
|
* Increment version to 3.1 in changelog and setup.pyJustin Mayer2012-08-081-1/+1
|
* Update Pelican project domain in a few more placesJustin Mayer2012-07-311-1/+1
|
* Add unidecode for translating slugs in asian languagesLeonard Huang2012-07-161-1/+1
|
* we need jinja >= 2.4Alexis Metaireau2012-06-261-1/+1
|
* merge the plugin branchAlexis Metaireau2012-06-101-2/+2
|\
| * Merge remote-tracking branch 'ametaireau/plugins' into pluginsBruno Binet2012-03-201-2/+2
| |\ | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: docs/settings.rst pelican/__init__.py pelican/generators.py pelican/settings.py setup.py
| | * Plugins are now installed by setuptoolsSkami182011-10-291-1/+1
| | |
| | * merge nduhamel/pluginsAlexis Metaireau2011-06-171-1/+1
| | |\
| | | * add blinker to requiresNicolas Duhamel2011-04-261-1/+1
| | | |
* | | | specify supported python version in the setup.pyAlexis Metaireau2012-04-011-1/+2
|/ / /
* | | restore back to hardcoded version in setup.py due to import hellAlexis Metaireau2012-03-161-4/+2
| | |
* | | Merge pull request #261 from AndreaCrotti/packageAlexis Metaireau2012-03-161-4/+4
|\ \ \ | | | | | | | | move tools in pelican.tools and add the pelican.tools package to setup.p...
| * | | move tools in pelican.tools and add the pelican.tools package to setup.pyAndrea Crotti2012-03-161-4/+4
| | | |
* | | | add version information in __init__.py and import them from setup.pyAndrea Crotti2012-03-161-2/+2
|/ / / | | | | | | | | | and conf.py
* | | remove unused importsAndrea Crotti2012-03-071-2/+0
| | |
* | | restructure the whole way scripts are created, using setuptools magicAndrea Crotti2012-03-071-8/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | to take care of creating .exe wrappers for windows. To make this work needed to - rename modules with a "-" in it (not a valid name) - add an __init__.py to the tools directory - create an entry point dictionary which stores the right associations
* | | use a try / except to check if argparse is a needed dependencyAndrea Crotti2012-03-071-1/+4
| | |
* | | Update outdated links to documentation and add Contribute link to README for ↵Justin Mayer2012-03-061-2/+2
| | | | | | | | | | | | issue #227
* | | prepare next releaseAlexis Metaireau2012-02-281-1/+1
| | |
* | | bump versionAlexis Metaireau2012-02-281-2/+2
| | |
* | | The .bat files are no longer installed in other platforms than WindowsSkami182011-10-231-3/+10
| | |
* | | Merge pull request #158 from renhbo/masterAlexis Metaireau2011-09-151-1/+3
|\ \ \ | | | | | | | | The .bat scripts for pelican in Windows
| * | | A wraper on .bat for pelican in Windows.renhbo2011-08-191-1/+3
| | | |
* | | | Fix timezone bug for ATOM generationRémy HUBSCHER2011-08-161-1/+1
|/ / /
* | | Include the "pelican-quickstart" script.Alexis Metaireau2011-08-111-1/+1
|/ / | | | | | | | | | | | | | | | | This ease the creation of a new blog. I modified slightly the code wrote by @Skami18 here: https://gist.github.com/1025236/dfa695e67482477907c79ae709ab827b20b18b04 This commit also renames the import script to "pelican-import". Fixes #129.
* | bump version number2.7.2Alexis Metaireau2011-06-171-1/+1
| |
* | Bump minor version2.7.1Alexis Metaireau2011-06-121-1/+1
| |
* | bump 2.7.02.7.0Alexis Metaireau2011-06-111-1/+1
| |
* | Modified setup.py: tools/pelican-themes will now be installed as a script...Skami182011-05-181-1/+1
| |