File: __about__.py

package info (click to toggle)
python-ssdeep 3.1%2Bdfsg-2
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 148 kB
  • ctags: 98
  • sloc: python: 424; makefile: 23
file content (22 lines) | stat: -rw-r--r-- 433 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
__all__ = [
    "__author__",
    "__copyright__",
    "__email__",
    "__license__",
    "__summary__",
    "__title__",
    "__uri__",
    "__version__",
]

__title__ = "ssdeep"
__summary__ = "Python wrapper for the ssdeep library"
__uri__ = "http://github.com/DinoTools/python-ssdeep"

__version__ = "3.1"

__author__ = "PhiBo (DinoTools)"
__email__ = ""

__license__ = "LGPLv3+"
__copyright__ = "Copyright 2014 %s" % __author__