forked from eerimoq/bincopy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·33 lines (31 loc) · 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
#!/usr/bin/env python
from setuptools import setup
import bincopy
setup(name='bincopy',
version=bincopy.__version__,
description=('Mangling of various file formats that conveys '
'binary information (Motorola S-Record, '
'Intel HEX and binary files).'),
long_description=open('README.rst', 'r').read(),
author='Erik Moqvist',
author_email='erik.moqvist@gmail.com',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords=['srecord',
'srec',
'intel hex',
'binary',
'.s19',
'.s28',
'.s37',
'.hex'],
url='https://github.com/eerimoq/bincopy',
py_modules=['bincopy'],
test_suite="tests",
entry_points = {
'console_scripts': ['bincopy=bincopy:_main']
})