-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
32 lines (31 loc) · 823 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
32
from setuptools import setup
setup(
name='fakeemail',
version='0.11.0',
author='Tom Wardill',
author_email='[email protected]',
description='A fake Email Server with a Web Front End',
url='https://github.com/tomwardill/FakeEmail',
zip_safe=True,
packages=['fakeemail', 'twisted.plugins'],
install_requires=[
'Twisted',
'jinja2',
'six',
'zope.interface>=3.6.0',
],
package_data={
'twisted': ['plugins/fakeemail.py'],
'fakeemail': ['templates/*']
},
classifiers=[
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
entry_points={
'console_scripts': [
'fakeemail=fakeemail.server:start'
]
}
)