-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
27 lines (24 loc) · 972 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
version = '1.0'
setup(
name='JavaCard', # unfortunately, I'm not the first on PythonCard
version=version,
author='Benoît Allard',
author_email='[email protected]',
description='A pure Python implementation of the JavaCard framework',
long_description=open('README.rst').read(),
url='https://bitbucket.org/benallard/pythoncard',
packages=find_packages(exclude=['test', 'pyDes']),
install_requires=['pyDes', 'PyCrypto'],
license='LGPL',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Programming Language :: Python :: 2',
'Topic :: Software Development :: Libraries :: Python Modules',
],
keywords='java smartcard javacard sun',
)