-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
50 lines (46 loc) · 1.49 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
import os
from setuptools import setup, find_packages
install_requires = [
"Flask==0.10.1",
"Flask-RESTful==0.2.12",
"Flask-PyMongo==0.3.0",
"pymongo==2.7.1",
"python-dateutil==2.2",
"SQLAlchemy==1.0.9",
"Flask-SQLAlchemy==2.1",
"MarkupSafe<=1.1.1",
"Jinja2<=2.11.2",
"itsdangerous<=1.1.0",
]
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="lathermail",
url="https://github.com/reclosedev/lathermail/",
version="0.4.2",
author="Roman Haritonov",
description="SMTP Server with API for email testing inspired by mailtrap and maildump",
author_email="[email protected]",
license="MIT",
packages=find_packages("."),
include_package_data=True,
install_requires=install_requires,
entry_points={
'console_scripts':
[
'lathermail = lathermail.run_all:main',
]
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Internet :: WWW/HTTP :: WSGI :: Server",
"Topic :: Communications :: Email",
],
long_description=read('README.rst') + '\n\n' + read('CHANGELOG.rst'),
)