Repository URL to install this package:
|
Version:
0.3.4 ▾
|
mailinglist-client
/
setup.py
|
|---|
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
requirements = [
'six==1.9.0',
'django'
]
test_requirements = [
'mock==1.0.1',
'httpretty==0.8.3'
]
setup(
name='mailinglist-client',
version='0.3.4',
description='Python client for the Mailinglist Client',
long_description=readme + '\n\n' + history,
author='Docker',
author_email='docker-io@docker.com',
url='https://github.com/docker/mailinglist-client',
packages=[
'mailinglist_client',
'mailinglist_client.backends',
'mailinglist_client.backends.dummy_backend',
'mailinglist_client.backends.marketo_backend',
],
package_dir={'mailinglist_client':
'mailinglist_client'},
include_package_data=True,
install_requires=requirements,
license="BSD",
zip_safe=False,
keywords='mailinglist',
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
],
test_suite='tests',
tests_require=test_requirements
)