-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
35 lines (32 loc) · 1.15 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="mailround",
version="1.1.2",
author="Stefan Eiermann",
author_email="foss@ultraapp.de",
description="Simple tool to check the sending and receiving of e-mails.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/eieste/MailRound",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development",
"Topic :: Communications :: Email :: Mail Transport Agents",
"Topic :: Communications :: Email :: Post-Office",
"Topic :: Communications :: Email :: Post-Office :: IMAP",
"Topic :: Communications :: Email :: Post-Office :: POP3",
"Topic :: Communications :: Email",
"Topic :: System :: Monitoring"
],
install_requires=[
"imapclient>=2.1.0"
"python3-dotenv>=0.15.0"
"msgpack>=1.0.2"
"jsonschema>=3.2.0"
]
)