-
Notifications
You must be signed in to change notification settings - Fork 160
/
setup.py
36 lines (31 loc) · 1015 Bytes
/
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
import codecs
from distutils.util import convert_path
from setuptools import find_packages, setup
main_ns = {}
ver_path = convert_path('chainbreaker/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
dependencies = [
'argparse',
'pycryptodome',
]
setup(
name='chainbreaker',
version=main_ns['__version__'],
author='n0fate',
author_email=codecs.encode('80008322+TvatreTrarfgr@hfref.abercyl.tvguho.pbz', 'rot-13'),
license='GPL-2.0',
url='https://github.com/GingerGeneste/chainbreaker',
description='Extract information from OSX keychain files',
packages=find_packages(exclude=['tests']),
classifiers=[
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
entry_points={
'console_scripts': ['chainbreaker=chainbreaker:main'],
},
install_requires=dependencies,
)