|
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
|
|
with open('README.md') as readme_file:
|
|
|
|
readme = readme_file.read()
|
|
|
|
|
|
|
|
with open('HISTORY.md') as history_file:
|
|
|
|
history = history_file.read()
|
|
|
|
|
|
|
|
requirements = [
|
|
|
|
'apistar>=0.4',
|
|
|
|
]
|
|
|
|
|
|
|
|
test_requirements = [
|
|
|
|
'pytest',
|
|
|
|
'pytest-cov',
|
|
|
|
'tox'
|
|
|
|
]
|
|
|
|
|
|
|
|
setup(
|
|
|
|
name='apistar-mail',
|
|
|
|
version='0.3.0',
|
|
|
|
description="A simple email Component for APIStar",
|
|
|
|
long_description=readme + '\n\n' + history,
|
|
|
|
long_description_content_type='text/markdown',
|
|
|
|
author="Drew Bednar",
|
|
|
|
author_email='drew@androiddrew.com',
|
|
|
|
url='https://github.com/androiddrew/apistar-mail',
|
|
|
|
packages=find_packages(include=['apistar_mail']),
|
|
|
|
include_package_data=True,
|
|
|
|
install_requires=requirements,
|
|
|
|
license='BSD',
|
|
|
|
keywords='apistar-mail apistar_mail mail SMTP',
|
|
|
|
classifiers=[
|
|
|
|
'Development Status :: 2 - Pre-Alpha',
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: BSD License',
|
|
|
|
'Natural Language :: English',
|
|
|
|
'Programming Language :: Python :: 3.5',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
],
|
|
|
|
extras_require={
|
|
|
|
'testing': test_requirements,
|
|
|
|
}
|
|
|
|
)
|