forked from alexandrevicenzi/fluentmail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (37 loc) · 1.21 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
with open('LICENSE') as f:
license = f.read()
with open('README.rst') as f:
description = f.read()
setup(
name='fluentmail',
version='0.1.2',
author='Alexandre Vicenzi',
author_email='[email protected]',
maintainer='Alexandre Vicenzi',
maintainer_email='[email protected]',
packages=['fluentmail'],
url='https://github.com/alexandrevicenzi/fluentmail',
bugtrack_url='https://github.com/alexandrevicenzi/fluentmail/issues',
license=license,
description='Tiny library to send email fluently',
long_description=description,
keywords='python, email, mail, fluent, smtp',
platforms='',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: Microsoft',
'Operating System :: POSIX',
'Operating System :: Unix',
'Topic :: Communications :: Email',
'Topic :: Utilities',
],
)