Ejemplo n.º 1
0
# along with flufl.bounce.  If not, see <http://www.gnu.org/licenses/>.

import distribute_setup

distribute_setup.use_setuptools()

from setup_helpers import description, find_doctests, get_version, long_description, require_python
from setuptools import setup, find_packages


require_python(0x20600F0)
__version__ = get_version("flufl/bounce/__init__.py")


# Don't try to fix the tests messages.
doctests = [doctest for doctest in find_doctests() if "tests/data" not in doctest]


setup(
    name="flufl.bounce",
    version=__version__,
    namespace_packages=["flufl"],
    packages=find_packages(),
    include_package_data=True,
    maintainer="Barry Warsaw",
    maintainer_email="*****@*****.**",
    description=description("README.rst"),
    long_description=long_description("README.rst", "flufl/bounce/NEWS.rst"),
    license="LGPLv3",
    url="http://launchpad.net/flufl.bounce",
    download_url="https://launchpad.net/flufl.bounce/+download",
Ejemplo n.º 2
0
# along with flufl.bounce.  If not, see <http://www.gnu.org/licenses/>.

import distribute_setup
distribute_setup.use_setuptools()

from setup_helpers import (
    description, find_doctests, get_version, long_description, require_python)
from setuptools import setup, find_packages


require_python(0x20600f0)
__version__ = get_version('flufl/bounce/__init__.py')


# Don't try to fix the tests messages.
doctests = [doctest for doctest in find_doctests()
            if 'tests/data' not in doctest]


setup(
    name='flufl.bounce',
    version=__version__,
    namespace_packages=['flufl'],
    packages=find_packages(),
    include_package_data=True,
    maintainer='Barry Warsaw',
    maintainer_email='*****@*****.**',
    description=description('README.rst'),
    long_description=long_description('README.rst', 'flufl/bounce/NEWS.rst'),
    license='LGPLv3',
    url='http://launchpad.net/flufl.bounce',
Ejemplo n.º 3
0
import distribute_setup
distribute_setup.use_setuptools()

from setup_helpers import (
    description, find_doctests, get_version, long_description, require_python)
from setuptools import setup, find_packages

require_python(0x20600f0)
__version__ = get_version('src/mailmanclient/__init__.py')

setup(
    name='mailmanclient',
    version=__version__,
    packages=find_packages('src'),
    package_dir = {'': 'src'},
    include_package_data=True,
    scripts=['src/mailmanclient/cli/mmclient'],
    maintainer='Barry Warsaw',
    maintainer_email='*****@*****.**',
    long_description=long_description(
        'README.txt',
        'src/mailmanclient/NEWS.txt'),
    license='LGPLv3',
    url='http://launchpad.net/mailman.client',
    download_url='https://launchpad.net/mailman.client/+download',
    # Auto-conversion to Python 3.
    use_2to3=True,
    convert_2to3_doctests=find_doctests(),
    install_requires=['httplib2', 'mock', 'tabulate', 'ply' ],
)
Ejemplo n.º 4
0
from setuptools import setup, find_packages


require_python(0x20600f0)
__version__ = get_version('src/mailmanclient/__init__.py')


setup(
    name='mailmanclient',
    version=__version__,
    packages=find_packages('src'),
    package_dir = {'': 'src'},
    include_package_data=True,
    maintainer='Barry Warsaw',
    maintainer_email='*****@*****.**',
    description=description('README.txt'),
    long_description=long_description(
        'src/mailmanclient/README.txt',
        'src/mailmanclient/NEWS.txt'),
    license='LGPLv3',
    url='http://launchpad.net/mailman.client',
    download_url='https://launchpad.net/mailman.client/+download',
    # Auto-conversion to Python 3.
    use_2to3=True,
    convert_2to3_doctests=find_doctests(),
    install_requires = [
        'httplib2',
        'mocker',
        ],
    )
Ejemplo n.º 5
0
# along with flufl.bounce.  If not, see <http://www.gnu.org/licenses/>.

import distribute_setup
distribute_setup.use_setuptools()

from setup_helpers import (
    description, find_doctests, get_version, long_description, require_python)
from setuptools import setup, find_packages


require_python(0x20600f0)
__version__ = get_version('flufl/bounce/__init__.py')


# Don't try to fix the tests messages.
doctests = [doctest for doctest in find_doctests()
            if 'tests/data' not in doctest]


setup(
    name='flufl-bounce-fc',
    version=__version__,
    namespace_packages=['flufl'],
    packages=find_packages(),
    include_package_data=True,
    maintainer='Barry Warsaw',
    maintainer_email='*****@*****.**',
    description=description('README.rst'),
    long_description=long_description('README.rst', 'flufl/bounce/NEWS.rst'),
    license='LGPLv3',
    url='http://github.com/futurecolors/flufl.bounce',