forked from eerimoq/bitstruct
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·23 lines (21 loc) · 836 Bytes
/
setup.py
File metadata and controls
executable file
·23 lines (21 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
from setuptools import setup
import bitstruct
setup(name='bitstruct',
version=bitstruct.__version__,
description=('This module performs conversions between Python values '
'and C bit field structs represented as Python '
'byte strings.'),
long_description=open('README.rst', 'r').read(),
author='Erik Moqvist, Ilya Petukhov',
author_email='erik.moqvist@gmail.com',
license='MIT',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
keywords=['bit field', 'bit parsing', 'bit unpack', 'bit pack'],
url='https://github.com/eerimoq/bitstruct',
py_modules=['bitstruct'],
test_suite="tests")