summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Happy New Year.Barry Warsaw2016-01-021-1/+1
|
* Added Trove classifiers to setup.py. (Closes: #152)Barry Warsaw2015-10-291-0/+12
|
* * Remove the test_suite key from setup.py; it isn't the right way to run theBarry Warsaw2015-10-081-1/+0
| | | | | tests suite (for that, use tox). * Use resource_filename() to locate the top mailman package.
* Core no longer depends on the standalone `mock` module. (Closes: #146)Barry Warsaw2015-09-221-1/+0
|
* Don't create the onebounce console script.Barry Warsaw2015-05-031-1/+1
|
* Now that we're on Python 3.4, we don't need enum34.Barry Warsaw2015-04-281-1/+0
|
* use falcon >= 0.3rc1 till a stable releaseAbhilash Raj2015-04-281-1/+1
|
* We don't need the 'six' package any more.Barry Warsaw2015-01-041-1/+0
|
* Bump copyright years.Barry Warsaw2015-01-041-1/+1
|
* Remove huge amounts of now unnecessary file boilerplate.Barry Warsaw2014-12-221-3/+1
|
* Update the setup.py, tox.ini, template.py and documentation for the switch toBarry Warsaw2014-12-221-2/+2
| | | | Python 3.
* Checkpointing.Barry Warsaw2014-11-301-0/+1
| | | | | | | | | | By using `six` I think I have most of the imports squared away. There's probably still uses of `unicode` built-ins that need fixing. The idea is to first get the test suite running (which it doesn't yet), and then to fix tests. There's a bug in lazr.config which requires us to patch it for now.
* Trunk merge.Barry Warsaw2014-11-021-1/+2
|\
| * added support for migrations via alembicAbhilash Raj2014-09-241-0/+1
| |
| * replace storm with sqlalchemy as dependencyAbhilash Raj2014-09-051-1/+1
| |
* | Complete the conversion from restish to falcon, modulo a clean up pass. AllBarry Warsaw2014-08-141-1/+1
|/ | | | REST tests pass. This requires an as yet unmerged internal change to falcon.
* * Use ``setuptools`` instead of ``distribute``, since the latter is defunct.Barry Warsaw2014-04-151-4/+4
|
* Bump copyright years.Barry Warsaw2014-01-011-1/+1
|
* * Use the ``enum34`` package instead of ``flufl.enum``.Barry Warsaw2013-08-271-1/+1
|\
| * Switch to PEP 435 enums from flufl.enums.Barry Warsaw2013-06-181-1/+1
| |
* | Switch to virtualenv and nose2 instead of zc.buildout and zope.testing.Barry Warsaw2013-08-251-2/+2
|/
* Remove unnecessary install_requires.Barry Warsaw2013-01-051-1/+0
|
* Bump copyright years.Barry Warsaw2013-01-011-1/+1
|
* * Python 2.7 is not required. Python 2.6 is no longer officially supported.Barry Warsaw2012-10-311-2/+2
| | | | | The code base is now also `python2.7 -3` clean, although there are still some warnings in 3rd party dependencies. LP: #1073506
* Replace flufl.password with passlib, albeit with a wrapper.Barry Warsaw2012-06-271-1/+1
|
* General code cleanup.Barry Warsaw2012-04-251-0/+1
| | | | | | | | - Add explicit dependency on zope.event in setup.py. - Use Python 3 compatible syntax for specifying that a class implements an interface, i.e. the @implementer class decorator. - print_function futures. - Whitespace normalization.
* * The `news` runner and queue has been renamed to the more accurate `nntp`.Barry Warsaw2012-03-311-0/+1
| | | | Beta testers can can safely remove `$var_dir/queue/news`.
* copybumpBarry Warsaw2012-01-011-1/+1
|
* Replace the password stuff with flufl.password.Barry Warsaw2012-01-011-0/+1
|
* * Build the Sphinx documentation with `python setup.py build_sphinx` insteadBarry Warsaw2011-10-051-3/+0
| | | | | of bin/docs from buildout. * Ensure foreign_keys are ON (probably unnecessary).
* Factor out bounce detection to flufl.bounce.Barry Warsaw2011-07-151-0/+1
|
* Major terminology shift:Barry Warsaw2011-06-011-1/+1
| | | | | | | | | | | | | | | | | * Queue runners are now called just 'Runners' since several of them don't manage queue directories. * Ban the term 'qrunner' too. * The master queue runner watcher should now just be called the 'master' or the 'master runner'. * bin/qrunner -> bin/runner * mailman.qrunner log file -> mailman.runner * master-qrunner.lck -> master.lck * master-qrunner.pid -> master.pid Also: * Remove some obsolete files * Begin the .txt -> .rst renaming
* Fixed version number regexp.Barry Warsaw2011-05-031-1/+1
|
* Happy New Year.Barry Warsaw2011-01-011-1/+1
|
* Upgrade from using the locknix package to using flufl.lock.Barry Warsaw2010-11-271-1/+1
|
* Fix the obvious errors identified by pyflakes. Skip false positives (mostlyBarry Warsaw2010-10-081-1/+0
| | | | | due to _() interpolation) and a few other problems that did not have immediately obvious fixes.
* checkpointBarry Warsaw2010-07-161-1/+1
|
* We are not compatible with zope.testing 4.x.Barry Warsaw2010-06-151-0/+1
|
* Updates for the latest releases of flufl.enum and flufl.i18n.Barry Warsaw2010-05-021-1/+1
|
* Complete the conversion to restish. All the tests pass and we're now actuallyBarry Warsaw2010-02-241-0/+1
| | | | | | RESTful. We have to use httplib2 to get DELETE and PUT. This is a prototype and could still use much cleanup.
* Rip out lazr.restful and replace it with restish. This simpifies a lot of theBarry Warsaw2010-02-231-3/+2
| | | | | REST architecture, at the expense of a few features, and less support. So far so good though.
* Happy New Year.Barry Warsaw2010-01-011-1/+1
|
* Add dependency.Barry Warsaw2009-11-291-0/+1
|
* Do not create the .mo files during setup. This makes things go much faster.Barry Warsaw2009-11-241-12/+12
| | | | | The tests do require a partial French translation for digester.txt, so just include the bare minimum, already msgfmt'd in the mailman.testing package.
* * Switch to distribute from setuptools.Barry Warsaw2009-11-231-5/+2
| | | | * Remove the dependency on setuptools_bzr and use a MANIFEST.in instead
* Factor out most of the i18n subsystem and convert to using the flufl.i18nBarry Warsaw2009-11-151-0/+1
| | | | package.
* Use lazr.smtptest instead of our own SMTPServer and test SMTPd.Barry Warsaw2009-10-151-0/+1
| | | | | Update the lazr.restful IWebServiceConfiguration implementation to include the new hop_by_hop_headers attribute, by way of BaseWSGIWebServiceConfiguration.
* Bye bye mailmanctl, long live 'bin/mailman start'Barry Warsaw2009-10-091-1/+1
|
* Re-enable setuptools_bzrBarry Warsaw2009-09-251-3/+3
|
* Re-enable __version__Barry Warsaw2009-09-251-2/+1
|