-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (29 loc) · 1.09 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
from setuptools import setup, find_packages
import SimpleTelnetMail
setup(
name = 'SimpleTelnetMail',
version = SimpleTelnetMail.__version__,
packages = find_packages(),
author = "Maurice Lambert",
author_email = "mauricelambert434@gmail.com",
description = "This package implement a simple SMTP client with Telnet.",
long_description = open('README.md').read(),
long_description_content_type="text/markdown",
include_package_data = True,
url = 'https://github.com/mauricelambert/SimpleTelnetMail',
classifiers = [
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
],
entry_points = {
'console_scripts': [
'SimpleTelnetMail = SimpleTelnetMail:send'
],
},
python_requires='>=3.6',
)