diff options
| author | Chris McDonough <chrism@plope.com> | 2010-11-02 20:49:08 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2010-11-02 20:49:08 -0400 |
| commit | 52d4fbc978f7244d12a82a43163651b962fb8861 (patch) | |
| tree | fb7a777766e6c4706180b4b95ba3c99840e8a674 /setup.py | |
| parent | 0b4277c1abe936746b628d05367abd3fa6042381 (diff) | |
| download | pyramid-52d4fbc978f7244d12a82a43163651b962fb8861.tar.gz pyramid-52d4fbc978f7244d12a82a43163651b962fb8861.tar.bz2 pyramid-52d4fbc978f7244d12a82a43163651b962fb8861.zip | |
make it unnecessary to change conf.py during a release, change author email, change version number to 0.0 until a release
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -12,7 +12,7 @@ # ############################################################################## -__version__ = '1.0a1' +__version__ = '0.0' import os import platform @@ -48,7 +48,8 @@ if platform.system() == 'Java': tests_require = install_requires + ['twill'] else: tests_require= install_requires + ['Sphinx', 'docutils', 'coverage', - 'twill', 'repoze.sphinx.autointerface'] + 'twill', 'repoze.sphinx.autointerface', + 'pkginfo'] if sys.version_info[:2] < (2, 6): install_requires.append('simplejson') @@ -67,7 +68,7 @@ setup(name='pyramid', ], keywords='web wsgi pylons pyramid bfg', author="Chris McDonough, Agendaless Consulting", - author_email="repoze-dev@lists.repoze.org", + author_email="pylons-devel@googlegroups.com", url="http://pylonshq.com", license="BSD-derived (http://www.repoze.org/LICENSE.txt)", packages=find_packages(), |
