-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (26 loc) · 982 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# coding=utf-8
import os
from setuptools import setup
README = open(os.path.join(os.path.dirname(__file__), 'README.rst')).read()
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-fs-email-helper',
version='0.3',
packages=['email_helper'],
include_package_data=True,
install_requires=['html2text'],
author='Yuri Lya',
author_email='yuri.lya@fogstream.ru',
url='https://bitbucket.org/fogstream/django-fs-email-helper',
license='The MIT License (MIT)',
description='The Django-related reusable app provides the ability to send multipart emails and store them in a database.',
long_description=README,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Framework :: Django",
]
)