File tree Expand file tree Collapse file tree 4 files changed +45
-6
lines changed Expand file tree Collapse file tree 4 files changed +45
-6
lines changed Original file line number Diff line number Diff line change 1
1
.. currentmodule :: bitproto
2
2
3
- .. _version-0.4.3 :
3
+ .. _version-0.4.4 :
4
4
5
- Version 0.4.3
5
+ Version 0.4.4
6
6
-------------
7
7
8
- - Minor fix compiler setup.py path for windows
8
+ - Minor fix compiler setup.py path issue.
9
9
10
10
.. _version-0.4.2 :
11
11
Original file line number Diff line number Diff line change 8
8
9
9
"""
10
10
11
- __version__ = "0.4.3 "
11
+ __version__ = "0.4.4 "
12
12
__description__ = "bit level data interchange format."
Original file line number Diff line number Diff line change 8
8
version = about ["__version__" ]
9
9
description = about ["__description__" ]
10
10
11
+ long_docs = """
12
+ bitproto
13
+ ========
14
+
15
+ Bitproto is a fast, lightweight and easy-to-use bit level data
16
+ interchange format for serializing data structures.
17
+
18
+ Features
19
+ ---------
20
+
21
+ - Supports bit level data serialization.
22
+ - Supports protocol extensiblity, for backward-compatibility.
23
+ - Very easy to start
24
+
25
+ - Protocol syntax is similar to the well-known protobuf.
26
+ - Generating code with very simple serialization api.
27
+
28
+ - Supports the following languages
29
+
30
+ - C - No dynamic memory allocation.
31
+ - Go - No reflection or type assertions.
32
+ - Python - No magic :)
33
+
34
+ - Blazing fast encoding/decoding.
35
+
36
+
37
+ Links
38
+ -----
39
+
40
+ Website: https://bitproto.readthedocs.io
41
+
42
+ 中文文档: https://bitproto.readthedocs.io/zh/latest
43
+
44
+ License
45
+ -------
46
+
47
+ BSD3.
48
+ """
49
+
11
50
setup (
12
51
name = "bitproto" ,
13
52
version = version ,
17
56
description = description ,
18
57
packages = ["bitproto" ],
19
58
include_package_data = True ,
20
- long_description = open ( join ( ".." , "README.rst" )). read () ,
59
+ long_description = long_docs ,
21
60
zip_safe = False ,
22
61
entry_points = {"console_scripts" : ["bitproto=bitproto._main:run_bitproto" ]},
23
62
python_requires = ">=3.7" ,
Original file line number Diff line number Diff line change 8
8
project = "bitproto"
9
9
copyright = "2021, Chao Wang"
10
10
author = "Chao Wang"
11
- version = "0.4.2 "
11
+ version = "0.4.4 "
12
12
exclude_patterns = ["_build" , "Thumbs.db" , ".DS_Store" ]
13
13
html_theme = "alabaster"
14
14
html_static_path = ["_static" ]
You can’t perform that action at this time.
0 commit comments