root/oss/bucker/setup.py
| Revision 638, 2.3 kB (checked in by sylvain, 1 year ago) |
|---|
| Line | |
|---|---|
| 1 | ## Redistribution and use in source and binary forms, with or without modification, |
| 2 | ## are permitted provided that the following conditions are met: |
| 3 | ## |
| 4 | ## * Redistributions of source code must retain the above copyright notice, |
| 5 | ## this list of conditions and the following disclaimer. |
| 6 | ## * Redistributions in binary form must reproduce the above copyright notice, |
| 7 | ## this list of conditions and the following disclaimer in the documentation |
| 8 | ## and/or other materials provided with the distribution. |
| 9 | ## * Neither the name of Sylvain Hellegouarch nor the names of his contributors |
| 10 | ## may be used to endorse or promote products derived from this software |
| 11 | ## without specific prior written permission. |
| 12 | ## |
| 13 | ## THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND |
| 14 | ## ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 15 | ## WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 16 | ## DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE |
| 17 | ## FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 18 | ## DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 19 | ## SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 20 | ## CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 21 | ## OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 22 | ## OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 23 | |
| 24 | from distutils.command.install import INSTALL_SCHEMES |
| 25 | from setuptools import setup |
| 26 | |
| 27 | for scheme in INSTALL_SCHEMES.values(): |
| 28 | scheme['data'] = scheme['purelib'] |
| 29 | |
| 30 | setup(name = "bucker", |
| 31 | version = '0.1.0', |
| 32 | description = "Messenging providers", |
| 33 | maintainer = "Sylvain Hellegouarch", |
| 34 | maintainer_email = "sh@defuze.org", |
| 35 | url = "http://trac.defuze.org/wiki/bucker", |
| 36 | download_url = "http://www.defuze.org/oss/bucker/", |
| 37 | packages = ["bucker", "bucker.provider", |
| 38 | "bucker.lib", "bucker.api"], |
| 39 | scripts=["scripts/queue-bus.py", "scripts/queue-server.py"], |
| 40 | platforms = ["any"], |
| 41 | license = 'BSD', |
| 42 | zip_safe=False, |
| 43 | long_description = "Messenging providers", |
| 44 | install_requires= ['bridge>=0.3.5'], |
| 45 | ) |
Note: See TracBrowser for help on using the browser.
