Skip to content

Commit 2dfea09

Browse files
Fix readme and stuff
1 parent 8aef057 commit 2dfea09

File tree

5 files changed

+24
-11
lines changed

5 files changed

+24
-11
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,3 @@ python:
33
- "3.6"
44
install:
55
- python setup.py install
6-
script:
7-
- python tests.py

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
**v1.0.1**
2+
* Fix `README` to actually be correct. A lot was copied from msg-extractor and I missed a few sections.
3+
14
**v1.0.0**
25
* Initial release.

README.rst

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
|License: GPL v3| |PyPI3| |PyPI2|
22

3-
msg-extractor
3+
msg-explorer
44
=============
55

6-
Extracts emails and attachments saved in Microsoft Outlook's .msg files
6+
Allows for the graphical browsing of Outlook Message Files and their data.
77

8-
The python package extract_msg automates the extraction of key email
9-
data (from, to, cc, date, subject, body) and the email's attachments.
8+
While normally intended as a development tool, it is fine to use as a normal
9+
user.
10+
11+
If you'd like to help provide translations, you can contact me on the Discord.
1012

1113
NOTICE
1214
======
@@ -29,7 +31,7 @@ following command:
2931
python -m msg_explorer
3032

3133

32-
If you have any questions feel free to contact me, Destiny, as arceusthe [at]
34+
If you have any questions feel free to contact me, Destiny, at arceusthe [at]
3335
gmail [dot] com.
3436

3537
If you have issues, it would be best to get help for them by opening a
@@ -69,8 +71,8 @@ Credits
6971
.. |License: GPL v3| image:: https://img.shields.io/badge/License-GPLv3-blue.svg
7072
:target: LICENSE.txt
7173

72-
.. |PyPI3| image:: https://img.shields.io/badge/pypi-1.0.0-blue.svg
73-
:target: https://pypi.org/project/msg-explorer/1.0.0/
74+
.. |PyPI3| image:: https://img.shields.io/badge/pypi-1.0.1-blue.svg
75+
:target: https://pypi.org/project/msg-explorer/1.0.1/
7476

7577
.. |PyPI2| image:: https://img.shields.io/badge/python-3.6+-brightgreen.svg
7678
:target: https://www.python.org/downloads/release/python-367/

msg_explorer/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@
2727
# along with this program. If not, see <http://www.gnu.org/licenses/>.
2828

2929
__author__ = 'Destiny Peterson'
30-
__date__ = '2022-05-31'
31-
__version__ = '1.0.0'
30+
__date__ = '2022-06-01'
31+
__version__ = '1.0.1'
3232

3333
# When this module is imported, we should try to compile the forms. They only
3434
# compile when they are outdated.

setup.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@
2727
if package:
2828
dependencies.append(package)
2929

30+
classifiers = [
31+
'Development Status :: 5 - Production/Stable',
32+
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
33+
'Operating System :: OS Independent',
34+
'Programming Language :: Python :: 3',
35+
]
36+
37+
38+
3039
setup(
3140
name=main_module,
3241
version=version,
@@ -43,4 +52,5 @@
4352
entry_points={'console_scripts': ['msg_explorer = msg_explorer.main:mainRunner',]},
4453
include_package_data=True,
4554
install_requires=dependencies,
55+
classifiers=classifiers,
4656
)

0 commit comments

Comments
 (0)