-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__init__.py
More file actions
executable file
·26 lines (19 loc) · 904 Bytes
/
__init__.py
File metadata and controls
executable file
·26 lines (19 loc) · 904 Bytes
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
# Developer : LORD KAY
#
#Permission is hereby granted, free of charge, to any person obtaining a copy
#of this software and associated documentation files (the "Software"), to deal
#in the Software without restriction, including without limitation the rights
#to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
#copies of the Software.
from __future__ import absolute_import, division, print_function
__all__ = (
"__title__", "__summary__", "__uri__", "__version__", "__author__",
"__email__", "__license__", "__copyright__",
)
__title__ = "textalyzer"
__summary__ = "Textalyzer is a small python module or library to help ease analyzing of text or words in a particular sentence and manipulating it"
__uri__ = "https://github.com/LORD-KAY/Textalyzer"
__version__ = "0.1.6"
__author__ = "Acheampong Lord Offei"
__email__ = "offeilord@gmail.com"
__license__ = "MIT"