-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (38 loc) · 1.45 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
43
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division,\
print_function, unicode_literals
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
README = open(os.path.join(here, 'README.rst')).read()
CHANGES = open(os.path.join(here, 'CHANGES.txt')).read()
requires = """
pyramid_mailer
""".split()
setup(name='tet.mailer',
version='0.1.1',
description='Email sending for Tet',
long_description=README + '\n\n' + CHANGES,
classifiers=[
"Development Status :: 1 - Planning",
"Framework :: Pyramid",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware",
"Topic :: Software Development :: Libraries :: Application Frameworks"
],
author='Antti Haapala',
author_email='[email protected]',
url='http://anttipatterns.com',
keywords='web wsgi bfg pylons pyramid',
packages=['tet.mailer'],
include_package_data=True,
zip_safe=False,
test_suite='tet.mailer',
install_requires=requires
)