-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.cfg
39 lines (36 loc) · 1.12 KB
/
setup.cfg
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
[metadata]
name = eml-extractor
version = 0.1.1
author = Diogo Alves
author_email = [email protected]
description = A CLI tool to extract attachments from .eml files (email messages saved as files)
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/diogo-alves/eml-extractor
platform = any
keywords = cli, eml, email, attachments, extract
license = MIT
license_files = LICENSE
classifiers =
Environment :: Console
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Operating System :: OS Independent
Intended Audience :: End Users/Desktop
License :: OSI Approved :: MIT License
Natural Language :: English
Topic :: Communications :: Email
Topic :: Utilities
[options]
py_modules = eml_extractor
python_requires = >=3.6
packages = find:
[options.entry_points]
console_scripts =
eml-extractor = eml_extractor:main
[mypy]
ignore_missing_imports = True