-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
50 lines (46 loc) · 1.89 KB
/
setup.py
File metadata and controls
50 lines (46 loc) · 1.89 KB
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
from os.path import abspath, dirname, join
from setuptools import setup, find_packages
from src.MailClientLibrary.version import VERSION
CURDIR = dirname(abspath(__file__))
CLASSIFIERS = '''
Development Status :: 5 - Production/Stable
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
License :: OSI Approved :: MIT License
Topic :: Software Development :: Testing
Topic :: Communications :: Email :: Email Clients (MUA)
Topic :: Communications :: Email :: Post-Office :: IMAP
Topic :: Communications :: Email :: Post-Office :: POP3
Topic :: Communications :: Email
Framework :: Robot Framework
Framework :: Robot Framework :: Library
'''.strip().splitlines()
with open(join(CURDIR, 'README.md')) as f:
DESCRIPTION = f.read()
with open(join(CURDIR, 'requirements.txt')) as f:
REQUIREMENTS = f.read().splitlines()
setup(
name = 'robotframework-mailclient',
version = VERSION,
description = 'Mail Client library for Robot Framework',
long_description = DESCRIPTION,
long_description_content_type="text/markdown",
author = 'noubar',
url = 'https://github.com/noubar/RobotFramework-MailClientLibrary',
license = 'Apache License 2.0',
keywords = 'robotframework testing testautomation mailtesting mailclient mail imap smtp pop3',
platforms = 'any',
classifiers = CLASSIFIERS,
python_requires = '>=3.8, <4',
install_requires = REQUIREMENTS,
package_dir = {'MailClientLibrary': 'src/MailClientLibrary'},
packages = find_packages('src'),
package_data ={'MailClientLibrary': ['*.pyi']}
)