-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
51 lines (44 loc) · 1.27 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
44
45
46
47
48
49
50
51
# -*- coding: utf-8 -*-
import os
from setuptools import setup
from setuptools import find_packages
from codecs import open # To use a consistent encoding
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames), encoding='utf-8').read()
setup(name='pyramid_marrowmailer',
version='0.3.dev0',
description='Pyramid integration package for marrow.mailer,'
' formerly known as TurboMail',
long_description=read('README.rst') +
read('HISTORY.rst'),
classifiers=[
"Programming Language :: Python",
"Framework :: Pyramid",
],
keywords='web wsgi pylons pyramid',
author='',
author_email='[email protected]',
url='https://github.com/iElectric/pyramid_marrowmailer',
license='BSD',
packages=find_packages('src'),
package_dir={'': 'src'},
install_requires=[
'pyramid',
'pyramid_tm',
'marrow.mailer',
'setuptools',
'transaction',
],
extras_require={
'test': [
'nose',
'coverage',
'setuptools-flakes',
'pep8',
],
},
entry_points="""
""",
include_package_data=True,
zip_safe=False,
)