-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (39 loc) · 1.47 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
36
37
38
39
40
41
42
43
"""Setup file for structpp."""
from setuptools import setup, find_packages
from version import version
setup(
name="structpp",
packages=find_packages(exclude=("test",)),
version=version,
license="LGPLv3",
install_requires=[
"future>=0.16.0",
],
description="An improved struct module with support for names and bitfields",
author="Arch",
author_email="[email protected]",
url="https://github.com/iotile/structpp",
keywords=[""],
classifiers=[
"Programming Language :: Python",
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules"
],
long_description="""\
Struct++
---------
Struct++ (also called structpp) provides a wrapper around the struct module in the python
standard library will additional support for packed bitfields and decoding structs into
a named tuple by annotated field names.
It is a 100%% drop in replacement for struct and its format string syntax is a superset of
the syntax used inside the struct module.
"""
)