-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (29 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
32 lines (29 loc) · 1.05 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
import setuptools
with open('README.md', mode='r', encoding='utf-8') as readme_file:
long_description = readme_file.read()
# remove badges in Readme
long_description = '# emlAnalyzer' + long_description.split('# emlAnalyzer')[1]
setuptools.setup(
name="eml-analyzer",
version="3.0.1",
author="Florian Wahl",
author_email="florian.wahl.developer@gmail.com",
description="A cli script to analyze an E-Mail in the eml format for viewing the header, extracting attachments, etc.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/wahlflo/eml_analyzer",
packages=setuptools.find_packages(exclude=("tests", "tests.*")),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=[
'cli-formatter>=1.2.0'
],
entry_points={
"console_scripts": [
"emlAnalyzer=eml_analyzer.cli_script:main"
],
}
)