Skip to content

Commit

Permalink
Merge pull request #8 from beproud/release-0.39
Browse files Browse the repository at this point in the history
release 1.0
  • Loading branch information
mtb-beta authored Jul 26, 2018
2 parents a4a2331 + 88e27e0 commit d74f650
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
recursive-include beproud/django/mailer/templates *
README.md
20 changes: 17 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,25 @@

from setuptools import setup, find_packages

def read_file(filename):
basepath = os.path.dirname(os.path.dirname(__file__))
filepath = os.path.join(basepath, filename)
if os.path.exists(filepath):
with open(filepath) as f:
read_text = f.read()
return read_text
else:
return ''


setup(
name='bpmailer',
version='0.38',
version='1.0',
description='Mailing utility for Django',
long_description=read_file('README.md'),
long_description_content_type="text/markdown",
author='BeProud Inc.',
author_email='ian@beproud.jp',
author_email='project@beproud.jp',
url='https://github.com/beproud/bpmailer/',
classifiers=[
'Development Status :: 3 - Alpha',
Expand All @@ -47,8 +60,9 @@
include_package_data=True,
packages=find_packages(),
namespace_packages=['beproud', 'beproud.django'],
install_requires=['Django>=1.8'],
install_requires=['Django>=1.8', 'six'],
tests_require=['celery>=4.1', 'mock>=0.7.2'],
test_suite='tests.main',
zip_safe=False,
keywords=['django', 'mail']
)

0 comments on commit d74f650

Please sign in to comment.