# 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",
# 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',
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' ], )
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', ], )
# 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',