-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
33 lines (29 loc) · 1.1 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
# -*- coding: utf-8 -*-
from setuptools import setup
version = '1.0'
setup(
name='CAPRunner',
version=version,
author='Benoît Allard',
author_email='[email protected]',
description='A JavaCard bytecode emulator',
long_description=open('README.rst').read(),
url='https://github.com/benallard/caprunner',
packages=['caprunner', 'caprunner.interpreter'],
scripts=['runcap.py', 'genref.py', 'readcap.py', 'readexp.py'],
install_requires=['JavaCard'],
license='LGPL',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)',
'Programming Language :: Python :: 2',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Embedded Systems',
'Topic :: Software Development :: Interpreters',
'Topic :: Software Development :: Testing',
],
keywords='javacard bytecode emulator CAP EXP applet',
)