-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
35 lines (33 loc) · 1.08 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# vim: ts=4
###
#
# Copyright (c) 2019 Pod Group Ltd
# Authors : J. Félix Ontañón <felix.ontanon@podgroup.com>
# Modify for python3: Mahfuzur Rahman Khan <mahfuzku11@gmail.com>
from setuptools import setup
setup(
name="kiopcgenerator",
author="J. Félix Ontañón",
author_email="felix.ontanon@podgroup.com",
url="https://github.com/PodgroupConnectivity/kiopcgenerator",
description="OPc USIM card keys geneartion. This script will produce Ki/eKi/OPc triplets given the Op and Transport keys.",
long_description=open("README.md", "r").read(),
classifiers=[
'Development Status :: 0.1.2 - Beta',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: Utilities'
],
keywords=['python', 'sim', 'simcard', 'telecoms'],
version="0.1.4",
license="GPLv3",
setup_requies=['wheel'],
install_requires=[
'pycrypto'
],
packages=['kiopcgenerator'],
scripts=["kiopcgen"]
)