-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
29 lines (28 loc) · 918 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
from setuptools import setup, find_packages
setup(
name='nous.mailpost',
version='0.5.2',
description='Email processor that posts the email received to a url',
author='Ignas Mikalajunas',
author_email='ignas@nous.lt',
url='http://github.com/Ignas/nous.mailpost/',
classifiers=["Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Topic :: Communications :: Email",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Programming Language :: Python"],
install_requires=[
'mox',
'zope.testing'
],
package_dir={'': 'src'},
packages=find_packages('src'),
include_package_data=True,
zip_safe=True,
license="GPL",
entry_points="""
[console_scripts]
mailpost = nous.mailpost:main
""",
)