-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1017 Bytes
/
setup.py
File metadata and controls
32 lines (30 loc) · 1017 Bytes
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, find_packages
with open('README.rst') as f:
long_description = f.read()
setup(
name='imaprelay',
description='IMAP-to-SMTP relay: imaprelay relays messages from an IMAP INBOX to an SMTP server',
long_description=long_description,
author='Nick Stenning',
author_email='nick@whiteink.com',
url='http://github.com/nickstenning/imaprelay',
license='MIT',
version='0.0.5',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: MIT License',
'Topic :: Communications :: Email',
'Topic :: Communications :: Email :: Email Clients (MUA)',
'Topic :: Communications :: Email :: Mail Transport Agents',
'Topic :: Utilities'
],
packages=find_packages(),
install_requires=[],
entry_points={
'console_scripts': [
'imaprelay = imaprelay.command:main'
]
}
)