Esempio n. 1
0
entry_points = {
    'console_scripts': [
        'blackhole = blackhole.application:run',
    ]
}


setup(name='blackhole',
      version=__version__,
      url='https://blackhole.io/',
      author='Kura',
      author_email='*****@*****.**',
      maintainer='Kura',
      maintainer_email='*****@*****.**',
      description=desc,
      long_description=long_description('README.rst'),
      license='MIT',
      platforms=['linux'],
      packages=find_packages(exclude=["*.tests"]),
      install_requires=[],
      entry_points=entry_points,
      classifiers=[
          'Programming Language :: Python :: 3.5',
          'Topic :: Internet',
          'Topic :: Utilities',
          'Topic :: Communications :: Email',
          'Topic :: Communications :: Email :: Mail Transport Agents',
          'Topic :: Software Development :: Testing',
          'Topic :: Software Development :: Testing :: Traffic Generation',
          'Intended Audience :: Developers',
          'License :: OSI Approved :: MIT License',
Esempio n. 2
0
# along with mailman.client.  If not, see <http://www.gnu.org/licenses/>.

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


require_python(0x20600f0)
__version__ = get_version('src/mailmanclient/constants.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.rst'),
    long_description=long_description(
        'src/mailmanclient/README.rst',
        'src/mailmanclient/NEWS.rst'),
    license='LGPLv3',
    url='https://www.list.org/',
    install_requires=[
        'httplib2',
        'six',
        ],
    )
Esempio n. 3
0

# 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",
    install_requires=["flufl.enum", "zope.interface"],
    test_suite="flufl.bounce.tests",
    classifiers=[
        "Development Status :: 5 - Production/Stable",
        "Intended Audience :: Developers",
        "License :: OSI Approved :: " "GNU Lesser General Public License v3 or later (LGPLv3+)",
        "Operating System :: POSIX",
        "Operating System :: Microsoft :: Windows",
        "Operating System :: MacOS :: MacOS X",
        "Programming Language :: Python",
        "Programming Language :: Python :: 2.6",
        "Programming Language :: Python :: 2.7",
Esempio n. 4
0
# 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',
    install_requires = [
        'flufl.enum',
        'zope.interface',
        ],
    test_suite='flufl.bounce.tests',
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: '
            'GNU Lesser General Public License v3 or later (LGPLv3+)',
        'Operating System :: POSIX',
        'Operating System :: Microsoft :: Windows',
Esempio n. 5
0
from setup_helpers import (description, get_version, long_description,
                           require_python)
from setuptools import setup, find_packages

require_python(0x20700f0)
__version__ = get_version('flufl/lock/__init__.py')

setup(name='flufl.lock',
      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/lock/NEWS.rst'),
      license='LGPLv3',
      url='http://launchpad.net/flufl.lock',
      download_url='https://pypi.python.org/pypi/flufl.lock',
      test_suite='flufl.lock.tests',
      classifiers=[
          'Development Status :: 5 - Production/Stable',
          'Intended Audience :: Developers',
          'License :: OSI Approved :: '
          'GNU Lesser General Public License v3 or later (LGPLv3+)',
          'Operating System :: POSIX',
          'Operating System :: MacOS :: MacOS X',
          'Programming Language :: Python',
          'Programming Language :: Python :: 2.6',
          'Programming Language :: Python :: 2.7',
          'Programming Language :: Python :: 3',
Esempio n. 6
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' ],
)
Esempio n. 7
0
File: setup.py Progetto: warsaw/junk
                           require_python)
from setuptools import setup, find_packages

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

setup(name='flufl.i18n',
      version=__version__,
      namespace_packages=['flufl'],
      packages=find_packages(),
      include_package_data=True,
      zip_safe=False,
      maintainer='Barry Warsaw',
      maintainer_email='*****@*****.**',
      description=description('README.rst'),
      long_description=long_description('README.rst', 'flufl/i18n/NEWS.rst'),
      license='LGPLv3',
      url='https://launchpad.net/flufl.i18n',
      download_url='https://launchpad.net/flufl.i18n/+download',
      test_suite='flufl.i18n.tests',
      classifiers=[
          'Development Status :: 5 - Production/Stable',
          'Intended Audience :: Developers',
          'License :: OSI Approved :: '
          'GNU Lesser General Public License v3 or later (LGPLv3+)',
          'Operating System :: POSIX',
          'Operating System :: Microsoft :: Windows',
          'Operating System :: MacOS :: MacOS X',
          'Programming Language :: Python',
          'Programming Language :: Python :: 2.6',
          'Programming Language :: Python :: 2.7',
Esempio n. 8
0
File: setup.py Progetto: warsaw/junk
require_python(0x20600f0)
__version__ = get_version('flufl/i18n/__init__.py')


setup(
    name='flufl.i18n',
    version=__version__,
    namespace_packages=['flufl'],
    packages=find_packages(),
    include_package_data=True,
    zip_safe=False,
    maintainer='Barry Warsaw',
    maintainer_email='*****@*****.**',
    description=description('README.rst'),
    long_description=long_description('README.rst', 'flufl/i18n/NEWS.rst'),
    license='LGPLv3',
    url='https://launchpad.net/flufl.i18n',
    download_url='https://launchpad.net/flufl.i18n/+download',
    test_suite='flufl.i18n.tests',
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: '
            'GNU Lesser General Public License v3 or later (LGPLv3+)',
        'Operating System :: POSIX',
        'Operating System :: Microsoft :: Windows',
        'Operating System :: MacOS :: MacOS X',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2.6',
        'Programming Language :: Python :: 2.7',
Esempio n. 9
0
# 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',
    download_url='https://launchpad.net/flufl.bounce/+download',
    install_requires = [
        'flufl.enum',
        'zope.interface',
        ],
    test_suite='flufl.bounce.tests',
    classifiers=[
        'Development Status :: 5 - Production/Stable',
        'Intended Audience :: Developers',
        'License :: OSI Approved :: '
            'GNU Lesser General Public License v3 or later (LGPLv3+)',
        'Operating System :: POSIX',
        'Operating System :: Microsoft :: Windows',
Esempio n. 10
0
        'blackhole = blackhole.application:run',
    ]
}

tests_require = ['pytest', 'pytest-asyncio']

setup(
    name='blackhole',
    version=__version__,
    url='https://blackhole.io/',
    author='Kura',
    author_email='*****@*****.**',
    maintainer='Kura',
    maintainer_email='*****@*****.**',
    description=desc,
    long_description=long_description('README.rst'),
    license='MIT',
    platforms=['linux'],
    packages=find_packages(exclude=["*.tests"]),
    install_requires=[],
    tests_require=tests_require,
    cmdclass={'test': PyTest},
    entry_points=entry_points,
    classifiers=[
        'Programming Language :: Python :: 3.5',
        'Environment :: Console',
        'Topic :: Internet',
        'Topic :: Utilities',
        'Topic :: Communications :: Email',
        'Topic :: Communications :: Email :: Mail Transport Agents',
        'Topic :: Software Development :: Testing',