-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathsetup.py
71 lines (64 loc) · 1.84 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
from setuptools import setup
docs_extras = [
'Sphinx >= 1.8.1',
'docutils',
'repoze.sphinx.autointerface',
'pylons-sphinx-themes >= 1.0.10',
]
tests_require = []
testing_extras = tests_require + [
'nose',
'coverage',
'WebTest',
]
try:
with open('README.rst') as f:
README = f.read()
with open('CHANGES.rst') as f:
CHANGES = f.read()
except IOError:
README = ''
CHANGES = ''
setup(
name='pyramid_mailer',
version='0.15.1',
license='BSD',
author='Dan Jacob',
author_email='danjac354@gmail.com',
description='Sendmail package for Pyramid',
long_description='\n\n'.join([README, CHANGES]),
url="https://docs.pylonsproject.org/projects/pyramid-mailer/en/latest/",
packages=[
'pyramid_mailer',
],
zip_safe=False,
platforms='any',
install_requires=[
'pyramid',
'repoze.sendmail>=4.1',
'transaction',
],
tests_require = tests_require,
extras_require = {
'testing':testing_extras,
'docs':docs_extras,
},
test_suite='pyramid_mailer',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
"Topic :: Communications :: Email",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Framework :: Pyramid",
]
)