-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathsetup.py
47 lines (45 loc) · 1.8 KB
/
setup.py
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
40
41
42
43
44
45
46
47
from setuptools import setup
MAJOR_VERSION = '0'
MINOR_VERSION = '0'
MICRO_VERSION = '17'
VERSION = "{}.{}.{}".format(MAJOR_VERSION, MINOR_VERSION, MICRO_VERSION)
setup(name = 'gittyleaks',
version = VERSION,
description = 'Discover where your sensitive data has been leaked.',
url = 'https://github.com/kootenpv/gittyleaks',
author = 'Pascal van Kooten',
author_email = 'kootenpv@gmail.com',
license = 'GPL',
packages = ['gittyleaks'],
install_requires = [
'scandir', 'sh'
],
entry_points = {
'console_scripts': ['gittyleaks = gittyleaks.gittyleaks:main']
},
classifiers = [
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Customer Service',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: Microsoft',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Unix',
'Operating System :: POSIX',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Topic :: Software Development',
'Topic :: Software Development :: Build Tools',
'Topic :: Software Development :: Debuggers',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: System :: Software Distribution',
'Topic :: System :: Systems Administration',
'Topic :: Utilities'
],
zip_safe = False,
platforms='any')